diff --git a/_stories/Highlights.PackageComparison.stories.tsx b/_stories/Highlights.PackageComparison.stories.tsx
index 2c8be1d2fa..34207d8fc7 100644
--- a/_stories/Highlights.PackageComparison.stories.tsx
+++ b/_stories/Highlights.PackageComparison.stories.tsx
@@ -15,7 +15,7 @@ import waffleConfig from '../packages/waffle-chart/examples/tp5-style.json'
import dataTableConfig from '../packages/data-table/examples/data-table-example.json'
import markupConfig from '../packages/markup-include/src/_stories/_mock/primary.json'
import filteredTextConfig from '../packages/filtered-text/examples/default.json'
-import filteredTextData from '../packages/filtered-text/examples/sex-ageGroup-with-values.json'
+import filteredTextData from '../packages/filtered-text/examples/__data__/sex-ageGroup-with-values.json'
const sectionStyles = {
border: '1px solid #d9d9d9',
diff --git a/dev-portal/run-dev-portal.mjs b/dev-portal/run-dev-portal.mjs
new file mode 100644
index 0000000000..dc5968377b
--- /dev/null
+++ b/dev-portal/run-dev-portal.mjs
@@ -0,0 +1,108 @@
+import { spawn } from 'node:child_process'
+import path from 'node:path'
+
+const mode = process.argv[2] === 'compare' ? 'compare' : 'portal'
+const rootDir = process.cwd()
+
+const npmCmd = process.platform === 'win32' ? 'npm.cmd' : 'npm'
+const viteBin = path.resolve(rootDir, 'node_modules', '.bin', process.platform === 'win32' ? 'vite.cmd' : 'vite')
+
+const packageCommands = [
+ ['run', 'dev:chart', '--', '--no-open'],
+ ['run', 'dev:dashboard', '--', '--no-open'],
+ ['run', 'dev:data-bite', '--', '--no-open'],
+ ['run', 'dev:data-table', '--', '--no-open'],
+ ['run', 'dev:filtered-text', '--', '--no-open'],
+ ['run', 'dev:map', '--', '--no-open'],
+ ['run', 'dev:markup-include', '--', '--no-open'],
+ ['run', 'dev:waffle-chart', '--', '--no-open']
+]
+
+const portalArgsByMode = {
+ portal: ['--config', 'dev-portal/vite.config.dev-portal.js', '--open'],
+ compare: ['--config', 'dev-portal/vite.config.compare.js', '--open', '/compare.html']
+}
+
+const children = []
+let shuttingDown = false
+let forceKillTimer = null
+
+const killChildTree = (child, signal) => {
+ if (!child || child.exitCode !== null || child.signalCode) return
+
+ if (process.platform === 'win32') {
+ spawn('taskkill', ['/pid', String(child.pid), '/T', '/F'], { stdio: 'ignore' })
+ return
+ }
+
+ try {
+ process.kill(-child.pid, signal)
+ } catch {
+ // Child may already be gone.
+ }
+}
+
+const shutdown = (signal = 'SIGTERM', exitCode = 0) => {
+ if (shuttingDown) return
+ shuttingDown = true
+
+ for (const child of children) {
+ killChildTree(child, signal)
+ }
+
+ if (signal === 'SIGKILL') {
+ process.exit(exitCode)
+ }
+
+ forceKillTimer = setTimeout(() => {
+ for (const child of children) {
+ killChildTree(child, 'SIGKILL')
+ }
+ process.exit(exitCode)
+ }, 3000)
+
+ forceKillTimer.unref()
+}
+
+const spawnManaged = (command, args) => {
+ const child = spawn(command, args, {
+ cwd: rootDir,
+ stdio: 'inherit',
+ detached: process.platform !== 'win32'
+ })
+
+ children.push(child)
+
+ child.on('exit', (code, signal) => {
+ if (shuttingDown) return
+
+ const isSignalExit = signal && signal !== 'SIGTERM' && signal !== 'SIGINT'
+ const isFailure = code !== 0 && code !== null
+
+ if (isFailure || isSignalExit) {
+ const label = [command, ...args].join(' ')
+ console.error(`\n[run-dev-portal] Child exited unexpectedly: ${label}`)
+ shutdown('SIGTERM', code ?? 1)
+ }
+ })
+
+ child.on('error', err => {
+ if (shuttingDown) return
+ console.error(`\n[run-dev-portal] Failed to start ${command}:`, err)
+ shutdown('SIGTERM', 1)
+ })
+
+ return child
+}
+
+for (const args of packageCommands) {
+ spawnManaged(npmCmd, args)
+}
+
+spawnManaged(viteBin, portalArgsByMode[mode])
+
+process.on('SIGINT', () => shutdown('SIGTERM', 130))
+process.on('SIGTERM', () => shutdown('SIGTERM', 143))
+process.on('exit', () => {
+ if (forceKillTimer) clearTimeout(forceKillTimer)
+})
diff --git a/docs/TESTING_BEST_PRACTICES.md b/docs/TESTING_BEST_PRACTICES.md
index 6f821881d2..cbfdf13596 100644
--- a/docs/TESTING_BEST_PRACTICES.md
+++ b/docs/TESTING_BEST_PRACTICES.md
@@ -307,7 +307,7 @@ await performAndAssert(
## Creating New Tests: Quick Checklist
1. ✅ Import helpers from `@cdc/core/helpers/testing`
-2. ✅ Use existing config: `import ExampleConfig from '../../examples/example-config.json'`
+2. ✅ Use existing config: `import ExampleConfig from '../../examples/default.json'`
3. ✅ Set editor mode: `args: { config: ExampleConfig, isEditor: true }`
4. ✅ Check EditorPanel.tsx for actual accordion sections
5. ✅ Create one test story per accordion section
diff --git a/package.json b/package.json
index 55c850f0df..d388fff85a 100644
--- a/package.json
+++ b/package.json
@@ -136,17 +136,17 @@
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"deploy": "gh-pages -d .storybook_build -t true",
"dev:all": "npm run dev:chart & npm run dev:dashboard & npm run dev:data-bite & npm run dev:data-table & npm run dev:editor & npm run dev:filtered-text & npm run dev:map & npm run dev:markup-include & npm run dev:waffle-chart & wait",
- "dev:compare": "npm run dev:chart -- --no-open & npm run dev:dashboard -- --no-open & npm run dev:data-bite -- --no-open & npm run dev:data-table -- --no-open & npm run dev:filtered-text -- --no-open & npm run dev:map -- --no-open & npm run dev:markup-include -- --no-open & npm run dev:waffle-chart -- --no-open & vite --config dev-portal/vite.config.compare.js --open /compare.html",
- "dev:portal": "npm run dev:chart -- --no-open & npm run dev:dashboard -- --no-open & npm run dev:data-bite -- --no-open & npm run dev:data-table -- --no-open & npm run dev:filtered-text -- --no-open & npm run dev:map -- --no-open & npm run dev:markup-include -- --no-open & npm run dev:waffle-chart -- --no-open & vite --config dev-portal/vite.config.dev-portal.js --open",
- "dev:chart": "lerna run --scope @cdc/chart start -- --port 3001",
- "dev:dashboard": "lerna run --scope @cdc/dashboard start -- --port 3003",
- "dev:data-bite": "lerna run --scope @cdc/data-bite start -- --port 3004",
- "dev:data-table": "lerna run --scope @cdc/data-table start -- --port 3005",
- "dev:editor": "lerna run --scope @cdc/editor start -- --port 3006",
- "dev:filtered-text": "lerna run --scope @cdc/filtered-text start -- --port 3007",
- "dev:map": "lerna run --scope @cdc/map start -- --port 3008",
- "dev:markup-include": "lerna run --scope @cdc/markup-include start -- --port 3009",
- "dev:waffle-chart": "lerna run --scope @cdc/waffle-chart start -- --port 3010",
+ "dev:compare": "node dev-portal/run-dev-portal.mjs compare",
+ "dev:portal": "node dev-portal/run-dev-portal.mjs",
+ "dev:chart": "lerna run --scope @cdc/chart start -- --port 3001 --strictPort",
+ "dev:dashboard": "lerna run --scope @cdc/dashboard start -- --port 3003 --strictPort",
+ "dev:data-bite": "lerna run --scope @cdc/data-bite start -- --port 3004 --strictPort",
+ "dev:data-table": "lerna run --scope @cdc/data-table start -- --port 3005 --strictPort",
+ "dev:editor": "lerna run --scope @cdc/editor start -- --port 3006 --strictPort",
+ "dev:filtered-text": "lerna run --scope @cdc/filtered-text start -- --port 3007 --strictPort",
+ "dev:map": "lerna run --scope @cdc/map start -- --port 3008 --strictPort",
+ "dev:markup-include": "lerna run --scope @cdc/markup-include start -- --port 3009 --strictPort",
+ "dev:waffle-chart": "lerna run --scope @cdc/waffle-chart start -- --port 3010 --strictPort",
"knip": "knip",
"knip:production": "knip --production",
"knip:unused-deps": "knip --include dependencies,devDependencies",
diff --git a/packages/chart/examples/data/data-with-metadata.json b/packages/chart/examples/__data__/data-with-metadata.json
similarity index 100%
rename from packages/chart/examples/data/data-with-metadata.json
rename to packages/chart/examples/__data__/data-with-metadata.json
diff --git a/packages/chart/examples/chart-regression-2.json b/packages/chart/examples/chart-regression-2.json
deleted file mode 100644
index fef465585e..0000000000
--- a/packages/chart/examples/chart-regression-2.json
+++ /dev/null
@@ -1,2360 +0,0 @@
-{
- "type": "chart",
- "debugSvg": false,
- "chartMessage": {
- "noData": "No Data Available"
- },
- "title": "Line Chart Title Line Chart",
- "showTitle": true,
- "showDownloadMediaButton": false,
- "theme": "theme-blue",
- "animate": false,
- "fontSize": "large",
- "lineDatapointStyle": "hover",
- "lineDatapointColor": "Same as Line",
- "barHasBorder": "false",
- "isLollipopChart": false,
- "lollipopShape": "circle",
- "lollipopColorStyle": "two-tone",
- "visualizationSubType": "regular",
- "barStyle": "",
- "roundingStyle": "standard",
- "tipRounding": "top",
- "isResponsiveTicks": false,
- "general": {
- "showDownloadButton": false
- },
- "padding": {
- "left": 5,
- "right": 5
- },
- "suppressedData": [],
- "preliminaryData": [],
- "yAxis": {
- "hideAxis": false,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": "80",
- "gridLines": false,
- "enablePadding": false,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": true,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "",
- "axisPadding": 0,
- "scalePadding": 10,
- "tickRotation": 0,
- "anchors": [],
- "type": "chart",
- "debugSvg": false,
- "chartMessage": {
- "noData": "No Data Available"
- },
- "title": "Chart Title Text",
- "showTitle": true,
- "showDownloadMediaButton": false,
- "theme": "theme-blue",
- "animate": false,
- "fontSize": "medium",
- "lineDatapointStyle": "hover",
- "lineDatapointColor": "Same as Line",
- "barHasBorder": "false",
- "isLollipopChart": false,
- "lollipopShape": "circle",
- "lollipopColorStyle": "two-tone",
- "visualizationSubType": "regular",
- "barStyle": "",
- "roundingStyle": "standard",
- "tipRounding": "top",
- "isResponsiveTicks": false,
- "general": {
- "showDownloadButton": false
- },
- "padding": {
- "left": 5,
- "right": 5
- },
- "suppressedData": [],
- "preliminaryData": [],
- "yAxis": {
- "hideAxis": false,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 50,
- "gridLines": false,
- "enablePadding": false,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": true,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "",
- "axisPadding": 0,
- "scalePadding": 10,
- "tickRotation": 0,
- "anchors": []
- },
- "boxplot": {
- "plots": [],
- "borders": "true",
- "firstQuartilePercentage": 25,
- "thirdQuartilePercentage": 75,
- "boxWidthPercentage": 40,
- "plotOutlierValues": false,
- "plotNonOutlierValues": true,
- "legend": {
- "showHowToReadText": false,
- "howToReadText": ""
- },
- "labels": {
- "q1": "Lower Quartile",
- "q2": "q2",
- "q3": "Upper Quartile",
- "q4": "q4",
- "minimum": "Minimum",
- "maximum": "Maximum",
- "mean": "Mean",
- "median": "Median",
- "sd": "Standard Deviation",
- "iqr": "Interquartile Range",
- "total": "Total",
- "outliers": "Outliers",
- "values": "Values",
- "lowerBounds": "Lower Bounds",
- "upperBounds": "Upper Bounds"
- }
- },
- "topAxis": {
- "hasLine": false
- },
- "isLegendValue": false,
- "barThickness": 0.35,
- "barHeight": 25,
- "barSpace": 15,
- "heights": {
- "vertical": 300,
- "horizontal": 2080
- },
- "xAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "categorical",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 75,
- "tickRotation": 0,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "",
- "labelOffset": 65,
- "axisPadding": 0,
- "target": 0,
- "maxTickRotation": 0,
- "dataKey": "Date",
- "tickWidthMax": 51
- },
- "table": {
- "label": "Data Table",
- "expanded": true,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "indexLabel": "Date",
- "download": false,
- "showVertical": true,
- "dateDisplayFormat": "",
- "show": true
- },
- "orientation": "horizontal",
- "color": "pinkpurple",
- "columns": {},
- "legend": {
- "hide": false,
- "behavior": "isolate",
- "singleRow": true,
- "colorCode": "",
- "reverseLabelOrder": false,
- "description": "",
- "dynamicLegend": false,
- "dynamicLegendDefaultText": "Show All",
- "dynamicLegendItemLimit": 5,
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
- "dynamicLegendChartMessage": "Select Options from the Legend",
- "lineMode": false,
- "verticalSorted": false,
- "highlightOnHover": false
- },
- "brush": {
- "height": 25,
- "data": [
- {
- "Date": "1/1/2021",
- "Group": "",
- "Male-Cases per 100K": "6714",
- "Female-Cases per 100K": "5714",
- "All-Cases per 100K": "12428"
- },
- {
- "Date": "2/1/2021",
- "Group": "",
- "Male-Cases per 100K": "7260",
- "Female-Cases per 100K": "6000",
- "All-Cases per 100K": "13260"
- },
- {
- "Date": "3/1/2021",
- "Group": "",
- "Male-Cases per 100K": "6808",
- "Female-Cases per 100K": "5808",
- "All-Cases per 100K": "12616"
- },
- {
- "Date": "4/1/2021",
- "Group": "",
- "Male-Cases per 100K": "6225",
- "Female-Cases per 100K": "6225",
- "All-Cases per 100K": "12450"
- },
- {
- "Date": "5/1/2021",
- "Group": "",
- "Male-Cases per 100K": "6633",
- "Female-Cases per 100K": "5633",
- "All-Cases per 100K": "12266"
- },
- {
- "Date": "6/1/2021",
- "Group": "",
- "Male-Cases per 100K": "10600",
- "Female-Cases per 100K": "8600",
- "All-Cases per 100K": "19200"
- },
- {
- "Date": "7/1/2021",
- "Group": "",
- "Male-Cases per 100K": "11300",
- "Female-Cases per 100K": "9300",
- "All-Cases per 100K": "20600"
- },
- {
- "Date": "8/1/2021",
- "Group": "",
- "Male-Cases per 100K": "12450",
- "Female-Cases per 100K": "9450",
- "All-Cases per 100K": "21900"
- },
- {
- "Date": "9/1/2021",
- "Group": "",
- "Male-Cases per 100K": "14625",
- "Female-Cases per 100K": "3625",
- "All-Cases per 100K": "18250"
- },
- {
- "Date": "10/1/2021",
- "Group": "",
- "Male-Cases per 100K": "18238",
- "Female-Cases per 100K": "3238",
- "All-Cases per 100K": "21476"
- },
- {
- "Date": "11/1/2021",
- "Group": "",
- "Male-Cases per 100K": "18214",
- "Female-Cases per 100K": "2214",
- "All-Cases per 100K": "20428"
- },
- {
- "Date": "12/1/2021",
- "Group": "",
- "Male-Cases per 100K": "16411",
- "Female-Cases per 100K": "2411",
- "All-Cases per 100K": "18822"
- },
- {
- "Date": "1/1/2022",
- "Group": "",
- "Male-Cases per 100K": "15808",
- "Female-Cases per 100K": "2808",
- "All-Cases per 100K": "18616"
- },
- {
- "Date": "2/1/2022",
- "Group": "",
- "Male-Cases per 100K": "11210",
- "Female-Cases per 100K": "3210",
- "All-Cases per 100K": "14420"
- },
- {
- "Date": "3/1/2022",
- "Group": "",
- "Male-Cases per 100K": "9660",
- "Female-Cases per 100K": "2660",
- "All-Cases per 100K": "12320"
- },
- {
- "Date": "4/1/2022",
- "Group": "",
- "Male-Cases per 100K": "7325",
- "Female-Cases per 100K": "2325",
- "All-Cases per 100K": "9650"
- },
- {
- "Date": "1/1/2021",
- "Group": "",
- "Male-Cases per 100K": "1760",
- "Female-Cases per 100K": "1314",
- "All-Cases per 100K": "3074"
- },
- {
- "Date": "2/1/2021",
- "Group": "",
- "Male-Cases per 100K": "2900",
- "Female-Cases per 100K": "1380",
- "All-Cases per 100K": "4280"
- },
- {
- "Date": "3/1/2021",
- "Group": "",
- "Male-Cases per 100K": "1566",
- "Female-Cases per 100K": "1500",
- "All-Cases per 100K": "3066"
- },
- {
- "Date": "4/1/2021",
- "Group": "",
- "Male-Cases per 100K": "1799",
- "Female-Cases per 100K": "1432",
- "All-Cases per 100K": "3231"
- },
- {
- "Date": "5/1/2021",
- "Group": "",
- "Male-Cases per 100K": "1526",
- "Female-Cases per 100K": "1296",
- "All-Cases per 100K": "2821"
- },
- {
- "Date": "6/1/2021",
- "Group": "",
- "Male-Cases per 100K": "2438",
- "Female-Cases per 100K": "1978",
- "All-Cases per 100K": "4416"
- },
- {
- "Date": "7/1/2021",
- "Group": "",
- "Male-Cases per 100K": "2599",
- "Female-Cases per 100K": "2300",
- "All-Cases per 100K": "4899"
- },
- {
- "Date": "8/1/2021",
- "Group": "",
- "Male-Cases per 100K": "2864",
- "Female-Cases per 100K": "2174",
- "All-Cases per 100K": "5037"
- },
- {
- "Date": "9/1/2021",
- "Group": "",
- "Male-Cases per 100K": "3364",
- "Female-Cases per 100K": "834",
- "All-Cases per 100K": "4198"
- },
- {
- "Date": "10/1/2021",
- "Group": "",
- "Male-Cases per 100K": "4195",
- "Female-Cases per 100K": "745",
- "All-Cases per 100K": "4939"
- },
- {
- "Date": "11/1/2021",
- "Group": "",
- "Male-Cases per 100K": "4189",
- "Female-Cases per 100K": "780",
- "All-Cases per 100K": "4969"
- },
- {
- "Date": "12/1/2021",
- "Group": "",
- "Male-Cases per 100K": "3775",
- "Female-Cases per 100K": "555",
- "All-Cases per 100K": "4329"
- },
- {
- "Date": "1/1/2022",
- "Group": "",
- "Male-Cases per 100K": "3636",
- "Female-Cases per 100K": "562",
- "All-Cases per 100K": "4198"
- },
- {
- "Date": "2/1/2022",
- "Group": "",
- "Male-Cases per 100K": "2578",
- "Female-Cases per 100K": "738",
- "All-Cases per 100K": "3317"
- },
- {
- "Date": "3/1/2022",
- "Group": "",
- "Male-Cases per 100K": "2222",
- "Female-Cases per 100K": "612",
- "All-Cases per 100K": "2834"
- },
- {
- "Date": "4/1/2022",
- "Group": "",
- "Male-Cases per 100K": "1685",
- "Female-Cases per 100K": "420",
- "All-Cases per 100K": "2105"
- }
- ],
- "active": false
- },
- "exclusions": {
- "active": false,
- "keys": []
- },
- "palette": "qualitative-bold",
- "isPaletteReversed": false,
- "twoColor": {
- "palette": "monochrome-1",
- "isPaletteReversed": false
- },
- "labels": false,
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": "",
- "abbreviated": false,
- "bottomSuffix": "",
- "bottomPrefix": "",
- "bottomAbbreviated": false
- },
- "confidenceKeys": {},
- "visual": {
- "border": true,
- "accent": true,
- "background": true,
- "verticalHoverLine": false,
- "horizontalHoverLine": false
- },
- "useLogScale": false,
- "filterBehavior": "Filter Change",
- "highlightedBarValues": [],
- "series": [
- {
- "dataKey": "Male-Cases per 100K",
- "type": "dashed-sm",
- "axis": "Left",
- "tooltip": true,
- "lineType": "curveLinear"
- },
- {
- "dataKey": "Female-Cases per 100K",
- "type": "dashed-lg",
- "axis": "Left",
- "tooltip": true,
- "lineType": "curveLinear"
- }
- ],
- "tooltips": {
- "opacity": 90,
- "singleSeries": false,
- "dateDisplayFormat": ""
- },
- "forestPlot": {
- "startAt": 0,
- "colors": {
- "line": "",
- "shape": ""
- },
- "lineOfNoEffect": {
- "show": true
- },
- "type": "",
- "pooledResult": {
- "diamondHeight": 5,
- "column": ""
- },
- "estimateField": "",
- "estimateRadius": "",
- "shape": "square",
- "rowHeight": 20,
- "description": {
- "show": true,
- "text": "description",
- "location": 0
- },
- "result": {
- "show": true,
- "text": "result",
- "location": 100
- },
- "radius": {
- "min": 2,
- "max": 10,
- "scalingColumn": ""
- },
- "regression": {
- "lower": 0,
- "upper": 0,
- "estimateField": 0
- },
- "leftWidthOffset": 0,
- "rightWidthOffset": 0,
- "showZeroLine": false,
- "leftLabel": "",
- "rightLabel": ""
- },
- "area": {
- "isStacked": false
- },
- "datasets": {},
- "visualizationType": "Bar",
- "data": [
- {
- "Date": "1/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "6714"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "7260"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "6808"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "6225"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "6633"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "10600"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "11300"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "12450"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "14625"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "18238"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "18214"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "16411"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "15808"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "11210"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "9660"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "7325"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "5714"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "6000"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "5808"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "6225"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "5633"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "8600"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "9300"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "9450"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "3625"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "3238"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2214"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2411"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2808"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "3210"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2660"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2325"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12428"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "13260"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12616"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12450"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12266"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "19200"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "20600"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "21900"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "18250"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "21476"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "20428"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "18822"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "18616"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "14420"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12320"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "9650"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1760"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2900"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1566"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1799"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1526"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2438"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2599"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2864"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "3364"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "4195"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "4189"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "3775"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "3636"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2578"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2222"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1685"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1314"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1380"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1500"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1432"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1296"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1978"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "2300"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "2174"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "834"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "745"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "780"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "555"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "562"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "738"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "612"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "420"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "3074"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4280"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "3066"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "3231"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "2821"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4416"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4899"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "5037"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4198"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4939"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4969"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4329"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4198"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "3317"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "2834"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "2105"
- }
- ],
- "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/17-chart-date-test-mm-dd-yyyy.csv",
- "dataFileSourceType": "url",
- "formattedData": [
- {
- "Date": "1/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "6714",
- "Female-Cases per 100K": "5714",
- "All-Cases per 100K": "12428"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "7260",
- "Female-Cases per 100K": "6000",
- "All-Cases per 100K": "13260"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "6808",
- "Female-Cases per 100K": "5808",
- "All-Cases per 100K": "12616"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "6225",
- "Female-Cases per 100K": "6225",
- "All-Cases per 100K": "12450"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "6633",
- "Female-Cases per 100K": "5633",
- "All-Cases per 100K": "12266"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "10600",
- "Female-Cases per 100K": "8600",
- "All-Cases per 100K": "19200"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "11300",
- "Female-Cases per 100K": "9300",
- "All-Cases per 100K": "20600"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "12450",
- "Female-Cases per 100K": "9450",
- "All-Cases per 100K": "21900"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "14625",
- "Female-Cases per 100K": "3625",
- "All-Cases per 100K": "18250"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "18238",
- "Female-Cases per 100K": "3238",
- "All-Cases per 100K": "21476"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "18214",
- "Female-Cases per 100K": "2214",
- "All-Cases per 100K": "20428"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group A",
- "Male-Cases per 100K": "16411",
- "Female-Cases per 100K": "2411",
- "All-Cases per 100K": "18822"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group A",
- "Male-Cases per 100K": "15808",
- "Female-Cases per 100K": "2808",
- "All-Cases per 100K": "18616"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group A",
- "Male-Cases per 100K": "11210",
- "Female-Cases per 100K": "3210",
- "All-Cases per 100K": "14420"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group A",
- "Male-Cases per 100K": "9660",
- "Female-Cases per 100K": "2660",
- "All-Cases per 100K": "12320"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group A",
- "Male-Cases per 100K": "7325",
- "Female-Cases per 100K": "2325",
- "All-Cases per 100K": "9650"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "1760",
- "Female-Cases per 100K": "1314",
- "All-Cases per 100K": "3074"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "2900",
- "Female-Cases per 100K": "1380",
- "All-Cases per 100K": "4280"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "1566",
- "Female-Cases per 100K": "1500",
- "All-Cases per 100K": "3066"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "1799",
- "Female-Cases per 100K": "1432",
- "All-Cases per 100K": "3231"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "1526",
- "Female-Cases per 100K": "1296",
- "All-Cases per 100K": "2821"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "2438",
- "Female-Cases per 100K": "1978",
- "All-Cases per 100K": "4416"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "2599",
- "Female-Cases per 100K": "2300",
- "All-Cases per 100K": "4899"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "2864",
- "Female-Cases per 100K": "2174",
- "All-Cases per 100K": "5037"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "3364",
- "Female-Cases per 100K": "834",
- "All-Cases per 100K": "4198"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "4195",
- "Female-Cases per 100K": "745",
- "All-Cases per 100K": "4939"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "4189",
- "Female-Cases per 100K": "780",
- "All-Cases per 100K": "4969"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group B",
- "Male-Cases per 100K": "3775",
- "Female-Cases per 100K": "555",
- "All-Cases per 100K": "4329"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group B",
- "Male-Cases per 100K": "3636",
- "Female-Cases per 100K": "562",
- "All-Cases per 100K": "4198"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group B",
- "Male-Cases per 100K": "2578",
- "Female-Cases per 100K": "738",
- "All-Cases per 100K": "3317"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group B",
- "Male-Cases per 100K": "2222",
- "Female-Cases per 100K": "612",
- "All-Cases per 100K": "2834"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group B",
- "Male-Cases per 100K": "1685",
- "Female-Cases per 100K": "420",
- "All-Cases per 100K": "2105"
- }
- ],
- "dataDescription": {
- "horizontal": false,
- "series": true,
- "singleRow": false,
- "seriesKey": "Sex",
- "xKey": "Date",
- "valueKeysTallSupport": [
- "Cases per 100K"
- ]
- },
- "validated": 4.23,
- "dynamicMarginTop": 0,
- "filters": [],
- "runtime": {
- "seriesLabels": {
- "Male-Cases per 100K": "Male-Cases per 100K",
- "Female-Cases per 100K": "Female-Cases per 100K"
- },
- "seriesLabelsAll": [
- "Male-Cases per 100K",
- "Female-Cases per 100K"
- ],
- "originalXAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "categorical",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 75,
- "tickRotation": 0,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "",
- "labelOffset": 65,
- "axisPadding": 0,
- "target": 0,
- "maxTickRotation": 0,
- "dataKey": "Date",
- "tickWidthMax": 51
- },
- "seriesKeys": [
- "Male-Cases per 100K",
- "Female-Cases per 100K"
- ],
- "xAxis": {
- "hideAxis": false,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 50,
- "gridLines": false,
- "enablePadding": false,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": true,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "",
- "axisPadding": 0,
- "scalePadding": 10,
- "tickRotation": 0,
- "anchors": []
- },
- "yAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "categorical",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 75,
- "tickRotation": 0,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "",
- "labelOffset": 65,
- "axisPadding": 0,
- "target": 0,
- "maxTickRotation": 0,
- "dataKey": "Date",
- "tickWidthMax": 51
- },
- "horizontal": false,
- "uniqueId": 1708043726764,
- "editorErrorMessage": ""
- },
- "description": "Subtext: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 40",
- "introText": "Message Text",
- "superTitle": "Super Title Text",
- "labelPlacement": "Below Bar",
- "label": "Cases per 100K"
- },
- "boxplot": {
- "plots": [],
- "borders": "true",
- "firstQuartilePercentage": 25,
- "thirdQuartilePercentage": 75,
- "boxWidthPercentage": 40,
- "plotOutlierValues": false,
- "plotNonOutlierValues": true,
- "legend": {
- "showHowToReadText": false,
- "howToReadText": ""
- },
- "labels": {
- "q1": "Lower Quartile",
- "q2": "q2",
- "q3": "Upper Quartile",
- "q4": "q4",
- "minimum": "Minimum",
- "maximum": "Maximum",
- "mean": "Mean",
- "median": "Median",
- "sd": "Standard Deviation",
- "iqr": "Interquartile Range",
- "total": "Total",
- "outliers": "Outliers",
- "values": "Values",
- "lowerBounds": "Lower Bounds",
- "upperBounds": "Upper Bounds"
- }
- },
- "topAxis": {
- "hasLine": false
- },
- "isLegendValue": false,
- "barThickness": 0.35,
- "barHeight": 25,
- "barSpace": 15,
- "heights": {
- "vertical": 300,
- "horizontal": 2771.2
- },
- "xAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "date",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": "",
- "tickRotation": "45",
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "",
- "labelOffset": 65,
- "axisPadding": 0,
- "target": 0,
- "maxTickRotation": 0,
- "dataKey": "Date",
- "tickWidthMax": 73,
- "padding": 6,
- "dateParseFormat": "%m/%d/%Y",
- "dateDisplayFormat": "%m/%Y",
- "label": "Month/Year"
- },
- "table": {
- "label": "Data Table",
- "expanded": true,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "indexLabel": "Date",
- "download": true,
- "showVertical": true,
- "dateDisplayFormat": "",
- "show": true,
- "showDownloadImgButton": true,
- "customTableConfig": false,
- "excludeColumns": []
- },
- "orientation": "vertical",
- "color": "pinkpurple",
- "columns": {},
- "legend": {
- "hide": false,
- "behavior": "isolate",
- "singleRow": true,
- "colorCode": "",
- "reverseLabelOrder": false,
- "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 40",
- "dynamicLegend": false,
- "dynamicLegendDefaultText": "Show All",
- "dynamicLegendItemLimit": 5,
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
- "dynamicLegendChartMessage": "Select Options from the Legend",
- "lineMode": true,
- "verticalSorted": false,
- "highlightOnHover": false,
- "label": "Lorem ipsum dolor sit amet",
- "position": "right"
- },
- "brush": {
- "height": 25,
- "data": [
- {
- "Date": "3/1/2021",
- "Group": "",
- "Male-Cases per 100K": "6808",
- "Female-Cases per 100K": "5808",
- "All-Cases per 100K": "12616"
- },
- {
- "Date": "4/1/2021",
- "Group": "",
- "Male-Cases per 100K": "6225",
- "Female-Cases per 100K": "6225",
- "All-Cases per 100K": "12450"
- },
- {
- "Date": "5/1/2021",
- "Group": "",
- "Male-Cases per 100K": "6633",
- "Female-Cases per 100K": "5633",
- "All-Cases per 100K": "12266"
- },
- {
- "Date": "6/1/2021",
- "Group": "",
- "Male-Cases per 100K": "10600",
- "Female-Cases per 100K": "8600",
- "All-Cases per 100K": "19200"
- },
- {
- "Date": "7/1/2021",
- "Group": "",
- "Male-Cases per 100K": "11300",
- "Female-Cases per 100K": "9300",
- "All-Cases per 100K": "20600"
- },
- {
- "Date": "8/1/2021",
- "Group": "",
- "Male-Cases per 100K": "12450",
- "Female-Cases per 100K": "9450",
- "All-Cases per 100K": "21900"
- },
- {
- "Date": "9/1/2021",
- "Group": "",
- "Male-Cases per 100K": "14625",
- "Female-Cases per 100K": "3625",
- "All-Cases per 100K": "18250"
- },
- {
- "Date": "10/1/2021",
- "Group": "",
- "Male-Cases per 100K": "18238",
- "Female-Cases per 100K": "3238",
- "All-Cases per 100K": "21476"
- },
- {
- "Date": "11/1/2021",
- "Group": "",
- "Male-Cases per 100K": "18214",
- "Female-Cases per 100K": "2214",
- "All-Cases per 100K": "20428"
- },
- {
- "Date": "12/1/2021",
- "Group": "",
- "Male-Cases per 100K": "16411",
- "Female-Cases per 100K": "2411",
- "All-Cases per 100K": "18822"
- }
- ],
- "active": false
- },
- "exclusions": {
- "active": true,
- "keys": [],
- "dateStart": "2021-03-01",
- "dateEnd": "2021-12-01"
- },
- "palette": "qualitative-bold",
- "isPaletteReversed": false,
- "twoColor": {
- "palette": "monochrome-1",
- "isPaletteReversed": false
- },
- "labels": false,
- "dataFormat": {
- "commas": true,
- "prefix": "",
- "suffix": "",
- "abbreviated": true,
- "bottomSuffix": "",
- "bottomPrefix": "",
- "bottomAbbreviated": false,
- "roundTo": ""
- },
- "confidenceKeys": {},
- "visual": {
- "border": true,
- "accent": true,
- "background": true,
- "verticalHoverLine": false,
- "horizontalHoverLine": false
- },
- "useLogScale": false,
- "filterBehavior": "Filter Change",
- "highlightedBarValues": [],
- "series": [
- {
- "dataKey": "Male-Cases per 100K",
- "type": "dashed-sm",
- "axis": "Left",
- "tooltip": true,
- "lineType": "curveLinear"
- },
- {
- "dataKey": "Female-Cases per 100K",
- "type": "dashed-lg",
- "axis": "Left",
- "tooltip": true,
- "lineType": "curveLinear"
- }
- ],
- "tooltips": {
- "opacity": 90,
- "singleSeries": false,
- "dateDisplayFormat": ""
- },
- "forestPlot": {
- "startAt": 0,
- "colors": {
- "line": "",
- "shape": ""
- },
- "lineOfNoEffect": {
- "show": true
- },
- "type": "",
- "pooledResult": {
- "diamondHeight": 5,
- "column": ""
- },
- "estimateField": "",
- "estimateRadius": "",
- "shape": "square",
- "rowHeight": 20,
- "description": {
- "show": true,
- "text": "description",
- "location": 0
- },
- "result": {
- "show": true,
- "text": "result",
- "location": 100
- },
- "radius": {
- "min": 2,
- "max": 10,
- "scalingColumn": ""
- },
- "regression": {
- "lower": 0,
- "upper": 0,
- "estimateField": 0
- },
- "leftWidthOffset": 0,
- "rightWidthOffset": 0,
- "showZeroLine": false,
- "leftLabel": "",
- "rightLabel": ""
- },
- "area": {
- "isStacked": false
- },
- "datasets": {},
- "visualizationType": "Line",
- "data": [
- {
- "Date": "1/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "6714"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "7260"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "6808"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "6225"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "6633"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "10600"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "11300"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "12450"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "14625"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "18238"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "18214"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "16411"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "15808"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "11210"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "9660"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group A",
- "Sex": "Male",
- "Cases per 100K": "7325"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "5714"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "6000"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "5808"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "6225"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "5633"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "8600"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "9300"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "9450"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "3625"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "3238"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2214"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2411"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2808"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "3210"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2660"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group A",
- "Sex": "Female",
- "Cases per 100K": "2325"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12428"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "13260"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12616"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12450"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12266"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "19200"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "20600"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "21900"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "18250"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "21476"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "20428"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "18822"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "18616"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "14420"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "12320"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group A",
- "Sex": "All",
- "Cases per 100K": "9650"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1760"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2900"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1566"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1799"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1526"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2438"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2599"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2864"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "3364"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "4195"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "4189"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "3775"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "3636"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2578"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "2222"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group B",
- "Sex": "Male",
- "Cases per 100K": "1685"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1314"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1380"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1500"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1432"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1296"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "1978"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "2300"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "2174"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "834"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "745"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "780"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "555"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "562"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "738"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "612"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group B",
- "Sex": "Female",
- "Cases per 100K": "420"
- },
- {
- "Date": "1/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "3074"
- },
- {
- "Date": "2/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4280"
- },
- {
- "Date": "3/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "3066"
- },
- {
- "Date": "4/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "3231"
- },
- {
- "Date": "5/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "2821"
- },
- {
- "Date": "6/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4416"
- },
- {
- "Date": "7/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4899"
- },
- {
- "Date": "8/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "5037"
- },
- {
- "Date": "9/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4198"
- },
- {
- "Date": "10/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4939"
- },
- {
- "Date": "11/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4969"
- },
- {
- "Date": "12/1/2021",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4329"
- },
- {
- "Date": "1/1/2022",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "4198"
- },
- {
- "Date": "2/1/2022",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "3317"
- },
- {
- "Date": "3/1/2022",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "2834"
- },
- {
- "Date": "4/1/2022",
- "Group": "Group B",
- "Sex": "All",
- "Cases per 100K": "2105"
- }
- ],
- "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/17-chart-date-test-mm-dd-yyyy.csv",
- "dataFileSourceType": "url",
- "dataDescription": {
- "horizontal": false,
- "series": true,
- "singleRow": false,
- "seriesKey": "Sex",
- "xKey": "Date",
- "valueKeysTallSupport": [
- "Cases per 100K"
- ]
- },
- "validated": 4.23,
- "dynamicMarginTop": 0,
- "filters": [
- {
- "values": [
- "Group B",
- "Group A"
- ],
- "active": "Group B",
- "filterStyle": "dropdown",
- "order": "cust",
- "columnName": "Group",
- "label": "Group",
- "orderedValues": [
- "Group B",
- "Group A"
- ]
- }
- ],
- "description": "Subtext: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 40",
- "introText": "Message: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 40",
- "superTitle": "Line Chart Super Title Super Title",
- "footnotes": "Footnote: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 40"
-}
\ No newline at end of file
diff --git a/packages/chart/examples/feature/__data__/age-adjusted-rates.json b/packages/chart/examples/feature/__data__/age-adjusted-rates.json
deleted file mode 100644
index e64ec71946..0000000000
--- a/packages/chart/examples/feature/__data__/age-adjusted-rates.json
+++ /dev/null
@@ -1,1486 +0,0 @@
-[
- {
- "Maine": {
- "male": [
- {
- "age": "1",
- "percent": 5,
- "count": 23,
- "rate": 29.5
- },
- {
- "age": "2",
- "percent": 16,
- "count": 74,
- "rate": 89.3
- },
- {
- "age": "3",
- "percent": 22,
- "count": 101,
- "rate": 130.4
- },
- {
- "age": "4",
- "percent": 17,
- "count": 80,
- "rate": 95.9
- },
- {
- "age": "5",
- "percent": 10,
- "count": 48,
- "rate": 47.3
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 1,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 5,
- "count": 22,
- "rate": 27
- },
- {
- "age": "3",
- "percent": 9,
- "count": 43,
- "rate": 54.2
- },
- {
- "age": "4",
- "percent": 6,
- "count": 28,
- "rate": 32.2
- },
- {
- "age": "5",
- "percent": 6,
- "count": 28,
- "rate": 25.7
- },
- {
- "age": "6",
- "percent": 1,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "United States": {
- "male": [
- {
- "age": "1",
- "percent": 6,
- "count": 1036,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 17,
- "count": 3032,
- "rate": 12.9
- },
- {
- "age": "3",
- "percent": 17,
- "count": 3042,
- "rate": 14.5
- },
- {
- "age": "4",
- "percent": 15,
- "count": 2560,
- "rate": 12.8
- },
- {
- "age": "5",
- "percent": 12,
- "count": 2137,
- "rate": 10.4
- },
- {
- "age": "6",
- "percent": 4,
- "count": 639,
- "rate": 10
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 355,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 6,
- "count": 1104,
- "rate": 10
- },
- {
- "age": "3",
- "percent": 7,
- "count": 1287,
- "rate": 10
- },
- {
- "age": "4",
- "percent": 6,
- "count": 1124,
- "rate": 10
- },
- {
- "age": "5",
- "percent": 6,
- "count": 983,
- "rate": 10
- },
- {
- "age": "6",
- "percent": 2,
- "count": 273,
- "rate": 10
- }
- ]
- },
- "Alaska": {
- "male": [
- {
- "age": "1",
- "percent": 9,
- "count": 20,
- "rate": 30.4
- },
- {
- "age": "2",
- "percent": 16,
- "count": 27,
- "rate": 43.6
- },
- {
- "age": "3",
- "percent": 14,
- "count": 25,
- "rate": 48.8
- },
- {
- "age": "4",
- "percent": 11,
- "count": 20,
- "rate": 45.9
- },
- {
- "age": "5",
- "percent": 11,
- "count": 20,
- "rate": 42.3
- },
- {
- "age": "6",
- "percent": 3,
- "count": 20,
- "rate": 10.5
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 7,
- "count": 20,
- "rate": 23.9
- },
- {
- "age": "3",
- "percent": 10,
- "count": 20,
- "rate": 38.4
- },
- {
- "age": "4",
- "percent": 9,
- "count": 20,
- "rate": 40.1
- },
- {
- "age": "5",
- "percent": 5,
- "count": 20,
- "rate": 18.1
- },
- {
- "age": "6",
- "percent": 1,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "Georgia": {
- "male": [
- {
- "age": "1",
- "percent": 5,
- "count": 92,
- "rate": 12.4
- },
- {
- "age": "2",
- "percent": 17,
- "count": 304,
- "rate": 40.6
- },
- {
- "age": "3",
- "percent": 19,
- "count": 338,
- "rate": 50.2
- },
- {
- "age": "4",
- "percent": 12,
- "count": 223,
- "rate": 33.1
- },
- {
- "age": "5",
- "percent": 10,
- "count": 182,
- "rate": 28.9
- },
- {
- "age": "6",
- "percent": 3,
- "count": 58,
- "rate": 10
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 34,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 7,
- "count": 124,
- "rate": 16.4
- },
- {
- "age": "3",
- "percent": 9,
- "count": 158,
- "rate": 21.9
- },
- {
- "age": "4",
- "percent": 8,
- "count": 142,
- "rate": 19.8
- },
- {
- "age": "5",
- "percent": 7,
- "count": 120,
- "rate": 17.3
- },
- {
- "age": "6",
- "percent": 2,
- "count": 35,
- "rate": 10
- }
- ]
- },
- "Connecticut": {
- "male": [
- {
- "age": "1",
- "percent": 4,
- "count": 60,
- "rate": 24.8
- },
- {
- "age": "2",
- "percent": 18,
- "count": 242,
- "rate": 105.5
- },
- {
- "age": "3",
- "percent": 19,
- "count": 262,
- "rate": 123.1
- },
- {
- "age": "4",
- "percent": 16,
- "count": 218,
- "rate": 97.7
- },
- {
- "age": "5",
- "percent": 15,
- "count": 202,
- "rate": 81.7
- },
- {
- "age": "6",
- "percent": 3,
- "count": 47,
- "rate": 16.6
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 22,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 5,
- "count": 64,
- "rate": 29.2
- },
- {
- "age": "3",
- "percent": 6,
- "count": 89,
- "rate": 40.6
- },
- {
- "age": "4",
- "percent": 6,
- "count": 80,
- "rate": 33.6
- },
- {
- "age": "5",
- "percent": 5,
- "count": 74,
- "rate": 27.9
- },
- {
- "age": "6",
- "percent": 1,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "Utah": {
- "male": [
- {
- "age": "1",
- "percent": 5,
- "count": 27,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 15,
- "count": 82,
- "rate": 33.4
- },
- {
- "age": "3",
- "percent": 19,
- "count": 103,
- "rate": 45
- },
- {
- "age": "4",
- "percent": 10,
- "count": 54,
- "rate": 31.6
- },
- {
- "age": "5",
- "percent": 9,
- "count": 48,
- "rate": 32.1
- },
- {
- "age": "6",
- "percent": 3,
- "count": 20,
- "rate": 10
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 7,
- "count": 36,
- "rate": 15.4
- },
- {
- "age": "3",
- "percent": 12,
- "count": 64,
- "rate": 28.9
- },
- {
- "age": "4",
- "percent": 8,
- "count": 43,
- "rate": 25.9
- },
- {
- "age": "5",
- "percent": 7,
- "count": 38,
- "rate": 24.6
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "Arizona": {
- "male": [
- {
- "age": "1",
- "percent": 12,
- "count": 297,
- "rate": 58.6
- },
- {
- "age": "2",
- "percent": 20,
- "count": 486,
- "rate": 90.8
- },
- {
- "age": "3",
- "percent": 15,
- "count": 352,
- "rate": 75.9
- },
- {
- "age": "4",
- "percent": 14,
- "count": 324,
- "rate": 76.1
- },
- {
- "age": "5",
- "percent": 10,
- "count": 234,
- "rate": 54.7
- },
- {
- "age": "6",
- "percent": 3,
- "count": 65,
- "rate": 10.3
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 3,
- "count": 69,
- "rate": 14.4
- },
- {
- "age": "2",
- "percent": 7,
- "count": 160,
- "rate": 32.3
- },
- {
- "age": "3",
- "percent": 6,
- "count": 146,
- "rate": 32.4
- },
- {
- "age": "4",
- "percent": 5,
- "count": 115,
- "rate": 26.5
- },
- {
- "age": "5",
- "percent": 4,
- "count": 105,
- "rate": 22.5
- },
- {
- "age": "6",
- "percent": 2,
- "count": 36,
- "rate": 10
- }
- ]
- },
- "Nevada": {
- "male": [
- {
- "age": "1",
- "percent": 9,
- "count": 86,
- "rate": 45.3
- },
- {
- "age": "2",
- "percent": 15,
- "count": 138,
- "rate": 58.4
- },
- {
- "age": "3",
- "percent": 13,
- "count": 119,
- "rate": 55.8
- },
- {
- "age": "4",
- "percent": 14,
- "count": 125,
- "rate": 62.5
- },
- {
- "age": "5",
- "percent": 12,
- "count": 110,
- "rate": 57.1
- },
- {
- "age": "6",
- "percent": 7,
- "count": 60,
- "rate": 24.6
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 3,
- "count": 27,
- "rate": 15
- },
- {
- "age": "2",
- "percent": 4,
- "count": 41,
- "rate": 18.2
- },
- {
- "age": "3",
- "percent": 6,
- "count": 56,
- "rate": 27
- },
- {
- "age": "4",
- "percent": 7,
- "count": 65,
- "rate": 33.1
- },
- {
- "age": "5",
- "percent": 8,
- "count": 69,
- "rate": 35.1
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "New Jersey": {
- "male": [
- {
- "age": "1",
- "percent": 4,
- "count": 108,
- "rate": 19.5
- },
- {
- "age": "2",
- "percent": 18,
- "count": 522,
- "rate": 88.9
- },
- {
- "age": "3",
- "percent": 18,
- "count": 507,
- "rate": 89.3
- },
- {
- "age": "4",
- "percent": 18,
- "count": 505,
- "rate": 87.9
- },
- {
- "age": "5",
- "percent": 14,
- "count": 389,
- "rate": 65.9
- },
- {
- "age": "6",
- "percent": 4,
- "count": 108,
- "rate": 16.5
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 1,
- "count": 34,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 6,
- "count": 161,
- "rate": 28.4
- },
- {
- "age": "3",
- "percent": 6,
- "count": 160,
- "rate": 27.9
- },
- {
- "age": "4",
- "percent": 6,
- "count": 169,
- "rate": 28.2
- },
- {
- "age": "5",
- "percent": 5,
- "count": 141,
- "rate": 22.3
- },
- {
- "age": "6",
- "percent": 2,
- "count": 60,
- "rate": 10
- }
- ]
- },
- "South Dakota": {
- "male": [
- {
- "age": "1",
- "percent": 15,
- "count": 20,
- "rate": 14.7
- },
- {
- "age": "2",
- "percent": 13,
- "count": 20,
- "rate": 13.3
- },
- {
- "age": "3",
- "percent": 18,
- "count": 20,
- "rate": 19.6
- },
- {
- "age": "4",
- "percent": 13,
- "count": 20,
- "rate": 16.7
- },
- {
- "age": "5",
- "percent": 6,
- "count": 20,
- "rate": 10
- },
- {
- "age": "6",
- "percent": 0,
- "count": 20,
- "rate": 10
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 3,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 5,
- "count": 20,
- "rate": 10
- },
- {
- "age": "3",
- "percent": 16,
- "count": 20,
- "rate": 19.2
- },
- {
- "age": "4",
- "percent": 5,
- "count": 20,
- "rate": 10
- },
- {
- "age": "5",
- "percent": 6,
- "count": 20,
- "rate": 10
- },
- {
- "age": "6",
- "percent": 0,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "Massachusetts": {
- "male": [
- {
- "age": "1",
- "percent": 3,
- "count": 71,
- "rate": 15.4
- },
- {
- "age": "2",
- "percent": 17,
- "count": 399,
- "rate": 79.4
- },
- {
- "age": "3",
- "percent": 22,
- "count": 509,
- "rate": 120.2
- },
- {
- "age": "4",
- "percent": 15,
- "count": 352,
- "rate": 83.4
- },
- {
- "age": "5",
- "percent": 13,
- "count": 297,
- "rate": 65.4
- },
- {
- "age": "6",
- "percent": 3,
- "count": 67,
- "rate": 12.8
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 36,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 7,
- "count": 157,
- "rate": 31.8
- },
- {
- "age": "3",
- "percent": 8,
- "count": 183,
- "rate": 42
- },
- {
- "age": "4",
- "percent": 6,
- "count": 129,
- "rate": 28.7
- },
- {
- "age": "5",
- "percent": 4,
- "count": 94,
- "rate": 19.2
- },
- {
- "age": "6",
- "percent": 1,
- "count": 21,
- "rate": 10
- }
- ]
- },
- "Oklahoma": {
- "male": [
- {
- "age": "1",
- "percent": 3,
- "count": 25,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 12,
- "count": 91,
- "rate": 32.8
- },
- {
- "age": "3",
- "percent": 14,
- "count": 107,
- "rate": 42.1
- },
- {
- "age": "4",
- "percent": 16,
- "count": 122,
- "rate": 54.3
- },
- {
- "age": "5",
- "percent": 16,
- "count": 124,
- "rate": 52.4
- },
- {
- "age": "6",
- "percent": 5,
- "count": 42,
- "rate": 14.4
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 7,
- "count": 52,
- "rate": 19.4
- },
- {
- "age": "3",
- "percent": 7,
- "count": 56,
- "rate": 22.2
- },
- {
- "age": "4",
- "percent": 8,
- "count": 66,
- "rate": 29.1
- },
- {
- "age": "5",
- "percent": 8,
- "count": 63,
- "rate": 24.9
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "New Mexico": {
- "male": [
- {
- "age": "1",
- "percent": 4,
- "count": 27,
- "rate": 18.7
- },
- {
- "age": "2",
- "percent": 19,
- "count": 117,
- "rate": 79.2
- },
- {
- "age": "3",
- "percent": 20,
- "count": 123,
- "rate": 93.5
- },
- {
- "age": "4",
- "percent": 11,
- "count": 67,
- "rate": 58.5
- },
- {
- "age": "5",
- "percent": 12,
- "count": 76,
- "rate": 59
- },
- {
- "age": "6",
- "percent": 4,
- "count": 26,
- "rate": 14.6
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 8,
- "count": 53,
- "rate": 38.6
- },
- {
- "age": "3",
- "percent": 8,
- "count": 53,
- "rate": 41.3
- },
- {
- "age": "4",
- "percent": 6,
- "count": 40,
- "rate": 33.8
- },
- {
- "age": "5",
- "percent": 4,
- "count": 26,
- "rate": 18.4
- },
- {
- "age": "6",
- "percent": 1,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "Minnesota": {
- "male": [
- {
- "age": "1",
- "percent": 8,
- "count": 81,
- "rate": 22.3
- },
- {
- "age": "2",
- "percent": 21,
- "count": 199,
- "rate": 51
- },
- {
- "age": "3",
- "percent": 13,
- "count": 121,
- "rate": 32.2
- },
- {
- "age": "4",
- "percent": 13,
- "count": 128,
- "rate": 38.5
- },
- {
- "age": "5",
- "percent": 10,
- "count": 95,
- "rate": 25.5
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 4,
- "count": 39,
- "rate": 11.1
- },
- {
- "age": "2",
- "percent": 8,
- "count": 76,
- "rate": 20.5
- },
- {
- "age": "3",
- "percent": 8,
- "count": 79,
- "rate": 21.7
- },
- {
- "age": "4",
- "percent": 6,
- "count": 58,
- "rate": 17.7
- },
- {
- "age": "5",
- "percent": 5,
- "count": 50,
- "rate": 13.2
- },
- {
- "age": "6",
- "percent": 1,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "Vermont": {
- "male": [
- {
- "age": "1",
- "percent": 3,
- "count": 20,
- "rate": 13.7
- },
- {
- "age": "2",
- "percent": 20,
- "count": 35,
- "rate": 90.9
- },
- {
- "age": "3",
- "percent": 16,
- "count": 28,
- "rate": 78.4
- },
- {
- "age": "4",
- "percent": 20,
- "count": 35,
- "rate": 93.4
- },
- {
- "age": "5",
- "percent": 10,
- "count": 20,
- "rate": 37.4
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 1,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 8,
- "count": 20,
- "rate": 38.1
- },
- {
- "age": "3",
- "percent": 7,
- "count": 20,
- "rate": 35.6
- },
- {
- "age": "4",
- "percent": 8,
- "count": 20,
- "rate": 36.5
- },
- {
- "age": "5",
- "percent": 6,
- "count": 20,
- "rate": 20.7
- },
- {
- "age": "6",
- "percent": 0,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "Oregon": {
- "male": [
- {
- "age": "1",
- "percent": 8,
- "count": 56,
- "rate": 21.6
- },
- {
- "age": "2",
- "percent": 17,
- "count": 117,
- "rate": 37.7
- },
- {
- "age": "3",
- "percent": 14,
- "count": 99,
- "rate": 33.9
- },
- {
- "age": "4",
- "percent": 14,
- "count": 95,
- "rate": 36.9
- },
- {
- "age": "5",
- "percent": 11,
- "count": 76,
- "rate": 29.6
- },
- {
- "age": "6",
- "percent": 6,
- "count": 40,
- "rate": 11.1
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 6,
- "count": 39,
- "rate": 13.1
- },
- {
- "age": "3",
- "percent": 8,
- "count": 56,
- "rate": 19.5
- },
- {
- "age": "4",
- "percent": 8,
- "count": 57,
- "rate": 22.4
- },
- {
- "age": "5",
- "percent": 5,
- "count": 32,
- "rate": 11.6
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "Delaware": {
- "male": [
- {
- "age": "1",
- "percent": 3,
- "count": 20,
- "rate": 23.5
- },
- {
- "age": "2",
- "percent": 16,
- "count": 72,
- "rate": 111
- },
- {
- "age": "3",
- "percent": 19,
- "count": 85,
- "rate": 149.8
- },
- {
- "age": "4",
- "percent": 14,
- "count": 64,
- "rate": 114.8
- },
- {
- "age": "5",
- "percent": 13,
- "count": 58,
- "rate": 88.7
- },
- {
- "age": "6",
- "percent": 3,
- "count": 20,
- "rate": 13.6
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 2,
- "count": 20,
- "rate": 18.8
- },
- {
- "age": "2",
- "percent": 5,
- "count": 23,
- "rate": 35.5
- },
- {
- "age": "3",
- "percent": 10,
- "count": 46,
- "rate": 77.8
- },
- {
- "age": "4",
- "percent": 5,
- "count": 21,
- "rate": 34.5
- },
- {
- "age": "5",
- "percent": 8,
- "count": 35,
- "rate": 47.1
- },
- {
- "age": "6",
- "percent": 1,
- "count": 20,
- "rate": 10
- }
- ]
- },
- "DC": {
- "male": [
- {
- "age": "1",
- "percent": 3,
- "count": 20,
- "rate": 35.1
- },
- {
- "age": "2",
- "percent": 8,
- "count": 42,
- "rate": 54.2
- },
- {
- "age": "3",
- "percent": 11,
- "count": 57,
- "rate": 103
- },
- {
- "age": "4",
- "percent": 16,
- "count": 82,
- "rate": 222
- },
- {
- "age": "5",
- "percent": 23,
- "count": 119,
- "rate": 354.7
- },
- {
- "age": "6",
- "percent": 10,
- "count": 49,
- "rate": 133.3
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 1,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 5,
- "count": 24,
- "rate": 27.5
- },
- {
- "age": "3",
- "percent": 3,
- "count": 20,
- "rate": 22.5
- },
- {
- "age": "4",
- "percent": 7,
- "count": 38,
- "rate": 102.4
- },
- {
- "age": "5",
- "percent": 11,
- "count": 56,
- "rate": 154.5
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 18.8
- }
- ]
- },
- "Mississippi": {
- "male": [
- {
- "age": "1",
- "percent": 5,
- "count": 24,
- "rate": 11.8
- },
- {
- "age": "2",
- "percent": 16,
- "count": 77,
- "rate": 39.8
- },
- {
- "age": "3",
- "percent": 20,
- "count": 95,
- "rate": 53.8
- },
- {
- "age": "4",
- "percent": 12,
- "count": 58,
- "rate": 33.9
- },
- {
- "age": "5",
- "percent": 8,
- "count": 38,
- "rate": 20.9
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ],
- "female": [
- {
- "age": "1",
- "percent": 1,
- "count": 20,
- "rate": 10
- },
- {
- "age": "2",
- "percent": 9,
- "count": 42,
- "rate": 21.4
- },
- {
- "age": "3",
- "percent": 9,
- "count": 44,
- "rate": 23.3
- },
- {
- "age": "4",
- "percent": 8,
- "count": 40,
- "rate": 21.6
- },
- {
- "age": "5",
- "percent": 6,
- "count": 30,
- "rate": 14.9
- },
- {
- "age": "6",
- "percent": 2,
- "count": 20,
- "rate": 10
- }
- ]
- }
- }
-]
diff --git a/packages/chart/examples/feature/__data__/city-temperature.json b/packages/chart/examples/feature/__data__/city-temperature.json
deleted file mode 100644
index eca5c42b4c..0000000000
--- a/packages/chart/examples/feature/__data__/city-temperature.json
+++ /dev/null
@@ -1,2198 +0,0 @@
-[
- {
- "Date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "72.2"
- },
- {
- "Date": "2011-10-02",
- "New York": "58.0",
- "San Francisco": "59.9",
- "Austin": "67.7"
- },
- {
- "Date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4"
- },
- {
- "Date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0"
- },
- {
- "Date": "2011-10-05",
- "New York": "64.2",
- "San Francisco": "58.7",
- "Austin": "72.4"
- },
- {
- "Date": "2011-10-06",
- "New York": "58.8",
- "San Francisco": "57.0",
- "Austin": "77.0"
- },
- {
- "Date": "2011-10-07",
- "New York": "57.9",
- "San Francisco": "56.7",
- "Austin": "82.3"
- },
- {
- "Date": "2011-10-08",
- "New York": "61.8",
- "San Francisco": "56.8",
- "Austin": "78.9"
- },
- {
- "Date": "2011-10-09",
- "New York": "69.3",
- "San Francisco": "56.7",
- "Austin": "68.8"
- },
- {
- "Date": "2011-10-10",
- "New York": "71.2",
- "San Francisco": "60.1",
- "Austin": "68.7"
- },
- {
- "Date": "2011-10-11",
- "New York": "68.7",
- "San Francisco": "61.1",
- "Austin": "70.3"
- },
- {
- "Date": "2011-10-12",
- "New York": "61.8",
- "San Francisco": "61.5",
- "Austin": "75.3"
- },
- {
- "Date": "2011-10-13",
- "New York": "63.0",
- "San Francisco": "64.3",
- "Austin": "76.6"
- },
- {
- "Date": "2011-10-14",
- "New York": "66.9",
- "San Francisco": "67.1",
- "Austin": "66.6"
- },
- {
- "Date": "2011-10-15",
- "New York": "61.7",
- "San Francisco": "64.6",
- "Austin": "68.0"
- },
- {
- "Date": "2011-10-16",
- "New York": "61.8",
- "San Francisco": "61.6",
- "Austin": "70.6"
- },
- {
- "Date": "2011-10-17",
- "New York": "62.8",
- "San Francisco": "61.1",
- "Austin": "71.1"
- },
- {
- "Date": "2011-10-18",
- "New York": "60.8",
- "San Francisco": "59.2",
- "Austin": "70.0"
- },
- {
- "Date": "2011-10-19",
- "New York": "62.1",
- "San Francisco": "58.9",
- "Austin": "61.6"
- },
- {
- "Date": "2011-10-20",
- "New York": "65.1",
- "San Francisco": "57.2",
- "Austin": "57.4"
- },
- {
- "Date": "2011-10-21",
- "New York": "55.6",
- "San Francisco": "56.4",
- "Austin": "64.3"
- },
- {
- "Date": "2011-10-22",
- "New York": "54.4",
- "San Francisco": "60.7",
- "Austin": "72.4"
- },
- {
- "Date": "2011-10-23",
- "New York": "54.4",
- "San Francisco": "65.1",
- "Austin": "72.4"
- },
- {
- "Date": "2011-10-24",
- "New York": "54.8",
- "San Francisco": "60.9",
- "Austin": "72.5"
- },
- {
- "Date": "2011-10-25",
- "New York": "57.9",
- "San Francisco": "56.1",
- "Austin": "72.7"
- },
- {
- "Date": "2011-10-26",
- "New York": "54.6",
- "San Francisco": "54.6",
- "Austin": "73.4"
- },
- {
- "Date": "2011-10-27",
- "New York": "54.4",
- "San Francisco": "56.1",
- "Austin": "70.7"
- },
- {
- "Date": "2011-10-28",
- "New York": "42.5",
- "San Francisco": "58.1",
- "Austin": "56.8"
- },
- {
- "Date": "2011-10-29",
- "New York": "40.9",
- "San Francisco": "57.5",
- "Austin": "51.0"
- },
- {
- "Date": "2011-10-30",
- "New York": "38.6",
- "San Francisco": "57.7",
- "Austin": "54.9"
- },
- {
- "Date": "2011-10-31",
- "New York": "44.2",
- "San Francisco": "55.1",
- "Austin": "58.8"
- },
- {
- "Date": "2011-11-01",
- "New York": "49.6",
- "San Francisco": "57.9",
- "Austin": "62.6"
- },
- {
- "Date": "2011-11-02",
- "New York": "47.2",
- "San Francisco": "64.6",
- "Austin": "71.0"
- },
- {
- "Date": "2011-11-03",
- "New York": "50.1",
- "San Francisco": "56.2",
- "Austin": "58.4"
- },
- {
- "Date": "2011-11-04",
- "New York": "50.1",
- "San Francisco": "50.5",
- "Austin": "45.1"
- },
- {
- "Date": "2011-11-05",
- "New York": "43.5",
- "San Francisco": "51.3",
- "Austin": "52.2"
- },
- {
- "Date": "2011-11-06",
- "New York": "43.8",
- "San Francisco": "52.6",
- "Austin": "73.0"
- },
- {
- "Date": "2011-11-07",
- "New York": "48.9",
- "San Francisco": "51.4",
- "Austin": "75.4"
- },
- {
- "Date": "2011-11-08",
- "New York": "55.5",
- "San Francisco": "50.6",
- "Austin": "72.1"
- },
- {
- "Date": "2011-11-09",
- "New York": "53.7",
- "San Francisco": "54.6",
- "Austin": "56.6"
- },
- {
- "Date": "2011-11-10",
- "New York": "57.7",
- "San Francisco": "55.6",
- "Austin": "55.4"
- },
- {
- "Date": "2011-11-11",
- "New York": "48.5",
- "San Francisco": "53.9",
- "Austin": "46.7"
- },
- {
- "Date": "2011-11-12",
- "New York": "46.8",
- "San Francisco": "54.0",
- "Austin": "62.0"
- },
- {
- "Date": "2011-11-13",
- "New York": "51.1",
- "San Francisco": "53.8",
- "Austin": "71.6"
- },
- {
- "Date": "2011-11-14",
- "New York": "56.8",
- "San Francisco": "53.5",
- "Austin": "75.5"
- },
- {
- "Date": "2011-11-15",
- "New York": "59.7",
- "San Francisco": "53.4",
- "Austin": "72.1"
- },
- {
- "Date": "2011-11-16",
- "New York": "56.5",
- "San Francisco": "52.2",
- "Austin": "65.7"
- },
- {
- "Date": "2011-11-17",
- "New York": "49.6",
- "San Francisco": "52.7",
- "Austin": "56.8"
- },
- {
- "Date": "2011-11-18",
- "New York": "41.5",
- "San Francisco": "53.1",
- "Austin": "49.9"
- },
- {
- "Date": "2011-11-19",
- "New York": "44.3",
- "San Francisco": "49.0",
- "Austin": "71.7"
- },
- {
- "Date": "2011-11-20",
- "New York": "54.0",
- "San Francisco": "50.4",
- "Austin": "77.7"
- },
- {
- "Date": "2011-11-21",
- "New York": "54.1",
- "San Francisco": "51.1",
- "Austin": "76.4"
- },
- {
- "Date": "2011-11-22",
- "New York": "49.4",
- "San Francisco": "52.3",
- "Austin": "68.8"
- },
- {
- "Date": "2011-11-23",
- "New York": "50.0",
- "San Francisco": "54.6",
- "Austin": "57.0"
- },
- {
- "Date": "2011-11-24",
- "New York": "44.0",
- "San Francisco": "55.1",
- "Austin": "55.5"
- },
- {
- "Date": "2011-11-25",
- "New York": "50.3",
- "San Francisco": "51.5",
- "Austin": "61.6"
- },
- {
- "Date": "2011-11-26",
- "New York": "52.1",
- "San Francisco": "53.6",
- "Austin": "64.1"
- },
- {
- "Date": "2011-11-27",
- "New York": "49.6",
- "San Francisco": "52.3",
- "Austin": "51.1"
- },
- {
- "Date": "2011-11-28",
- "New York": "57.2",
- "San Francisco": "51.0",
- "Austin": "43.0"
- },
- {
- "Date": "2011-11-29",
- "New York": "59.1",
- "San Francisco": "49.5",
- "Austin": "46.4"
- },
- {
- "Date": "2011-11-30",
- "New York": "50.6",
- "San Francisco": "49.8",
- "Austin": "48.0"
- },
- {
- "Date": "2011-12-01",
- "New York": "44.3",
- "San Francisco": "60.4",
- "Austin": "48.1"
- },
- {
- "Date": "2011-12-02",
- "New York": "43.9",
- "San Francisco": "62.2",
- "Austin": "60.6"
- },
- {
- "Date": "2011-12-03",
- "New York": "42.1",
- "San Francisco": "58.3",
- "Austin": "62.6"
- },
- {
- "Date": "2011-12-04",
- "New York": "43.9",
- "San Francisco": "52.7",
- "Austin": "57.1"
- },
- {
- "Date": "2011-12-05",
- "New York": "50.2",
- "San Francisco": "51.5",
- "Austin": "44.2"
- },
- {
- "Date": "2011-12-06",
- "New York": "54.2",
- "San Francisco": "49.9",
- "Austin": "37.4"
- },
- {
- "Date": "2011-12-07",
- "New York": "54.6",
- "San Francisco": "48.6",
- "Austin": "35.0"
- },
- {
- "Date": "2011-12-08",
- "New York": "43.4",
- "San Francisco": "46.4",
- "Austin": "37.0"
- },
- {
- "Date": "2011-12-09",
- "New York": "42.2",
- "San Francisco": "49.8",
- "Austin": "45.4"
- },
- {
- "Date": "2011-12-10",
- "New York": "45.0",
- "San Francisco": "52.1",
- "Austin": "50.7"
- },
- {
- "Date": "2011-12-11",
- "New York": "33.8",
- "San Francisco": "48.8",
- "Austin": "48.6"
- },
- {
- "Date": "2011-12-12",
- "New York": "36.8",
- "San Francisco": "47.4",
- "Austin": "52.2"
- },
- {
- "Date": "2011-12-13",
- "New York": "38.6",
- "San Francisco": "47.2",
- "Austin": "60.8"
- },
- {
- "Date": "2011-12-14",
- "New York": "41.9",
- "San Francisco": "46.1",
- "Austin": "70.0"
- },
- {
- "Date": "2011-12-15",
- "New York": "49.6",
- "San Francisco": "48.8",
- "Austin": "64.2"
- },
- {
- "Date": "2011-12-16",
- "New York": "50.2",
- "San Francisco": "47.9",
- "Austin": "50.9"
- },
- {
- "Date": "2011-12-17",
- "New York": "40.6",
- "San Francisco": "49.8",
- "Austin": "51.6"
- },
- {
- "Date": "2011-12-18",
- "New York": "29.1",
- "San Francisco": "49.1",
- "Austin": "55.2"
- },
- {
- "Date": "2011-12-19",
- "New York": "33.7",
- "San Francisco": "48.3",
- "Austin": "62.1"
- },
- {
- "Date": "2011-12-20",
- "New York": "45.8",
- "San Francisco": "49.3",
- "Austin": "56.3"
- },
- {
- "Date": "2011-12-21",
- "New York": "47.4",
- "San Francisco": "48.4",
- "Austin": "47.2"
- },
- {
- "Date": "2011-12-22",
- "New York": "54.4",
- "San Francisco": "53.3",
- "Austin": "52.3"
- },
- {
- "Date": "2011-12-23",
- "New York": "47.8",
- "San Francisco": "47.5",
- "Austin": "45.2"
- },
- {
- "Date": "2011-12-24",
- "New York": "34.9",
- "San Francisco": "47.9",
- "Austin": "43.6"
- },
- {
- "Date": "2011-12-25",
- "New York": "35.9",
- "San Francisco": "48.9",
- "Austin": "42.9"
- },
- {
- "Date": "2011-12-26",
- "New York": "43.6",
- "San Francisco": "45.9",
- "Austin": "48.2"
- },
- {
- "Date": "2011-12-27",
- "New York": "42.9",
- "San Francisco": "47.2",
- "Austin": "45.4"
- },
- {
- "Date": "2011-12-28",
- "New York": "46.2",
- "San Francisco": "48.9",
- "Austin": "44.2"
- },
- {
- "Date": "2011-12-29",
- "New York": "30.8",
- "San Francisco": "50.9",
- "Austin": "50.4"
- },
- {
- "Date": "2011-12-30",
- "New York": "40.8",
- "San Francisco": "52.9",
- "Austin": "52.4"
- },
- {
- "Date": "2011-12-31",
- "New York": "49.8",
- "San Francisco": "50.1",
- "Austin": "53.5"
- },
- {
- "Date": "2012-01-01",
- "New York": "46.3",
- "San Francisco": "53.9",
- "Austin": "55.9"
- },
- {
- "Date": "2012-01-02",
- "New York": "43.2",
- "San Francisco": "53.1",
- "Austin": "48.2"
- },
- {
- "Date": "2012-01-03",
- "New York": "30.3",
- "San Francisco": "49.7",
- "Austin": "41.0"
- },
- {
- "Date": "2012-01-04",
- "New York": "19.2",
- "San Francisco": "52.7",
- "Austin": "48.9"
- },
- {
- "Date": "2012-01-05",
- "New York": "32.1",
- "San Francisco": "52.6",
- "Austin": "54.8"
- },
- {
- "Date": "2012-01-06",
- "New York": "41.2",
- "San Francisco": "49.0",
- "Austin": "61.2"
- },
- {
- "Date": "2012-01-07",
- "New York": "47.0",
- "San Francisco": "51.0",
- "Austin": "59.7"
- },
- {
- "Date": "2012-01-08",
- "New York": "46.0",
- "San Francisco": "56.8",
- "Austin": "52.5"
- },
- {
- "Date": "2012-01-09",
- "New York": "34.7",
- "San Francisco": "52.3",
- "Austin": "54.0"
- },
- {
- "Date": "2012-01-10",
- "New York": "39.4",
- "San Francisco": "51.6",
- "Austin": "47.7"
- },
- {
- "Date": "2012-01-11",
- "New York": "40.4",
- "San Francisco": "49.8",
- "Austin": "49.2"
- },
- {
- "Date": "2012-01-12",
- "New York": "45.4",
- "San Francisco": "51.9",
- "Austin": "48.4"
- },
- {
- "Date": "2012-01-13",
- "New York": "40.7",
- "San Francisco": "53.7",
- "Austin": "40.2"
- },
- {
- "Date": "2012-01-14",
- "New York": "30.4",
- "San Francisco": "52.9",
- "Austin": "43.9"
- },
- {
- "Date": "2012-01-15",
- "New York": "23.9",
- "San Francisco": "49.7",
- "Austin": "45.2"
- },
- {
- "Date": "2012-01-16",
- "New York": "22.6",
- "San Francisco": "45.3",
- "Austin": "65.0"
- },
- {
- "Date": "2012-01-17",
- "New York": "39.8",
- "San Francisco": "43.6",
- "Austin": "68.2"
- },
- {
- "Date": "2012-01-18",
- "New York": "43.2",
- "San Francisco": "45.0",
- "Austin": "47.5"
- },
- {
- "Date": "2012-01-19",
- "New York": "26.3",
- "San Francisco": "47.3",
- "Austin": "57.1"
- },
- {
- "Date": "2012-01-20",
- "New York": "32.8",
- "San Francisco": "51.4",
- "Austin": "61.9"
- },
- {
- "Date": "2012-01-21",
- "New York": "27.4",
- "San Francisco": "53.7",
- "Austin": "54.6"
- },
- {
- "Date": "2012-01-22",
- "New York": "25.0",
- "San Francisco": "48.3",
- "Austin": "56.7"
- },
- {
- "Date": "2012-01-23",
- "New York": "39.4",
- "San Francisco": "52.9",
- "Austin": "54.4"
- },
- {
- "Date": "2012-01-24",
- "New York": "48.7",
- "San Francisco": "49.1",
- "Austin": "52.7"
- },
- {
- "Date": "2012-01-25",
- "New York": "43.0",
- "San Francisco": "52.1",
- "Austin": "61.8"
- },
- {
- "Date": "2012-01-26",
- "New York": "37.1",
- "San Francisco": "53.6",
- "Austin": "55.0"
- },
- {
- "Date": "2012-01-27",
- "New York": "48.2",
- "San Francisco": "50.4",
- "Austin": "50.7"
- },
- {
- "Date": "2012-01-28",
- "New York": "43.7",
- "San Francisco": "50.3",
- "Austin": "52.9"
- },
- {
- "Date": "2012-01-29",
- "New York": "40.1",
- "San Francisco": "53.8",
- "Austin": "44.4"
- },
- {
- "Date": "2012-01-30",
- "New York": "38.0",
- "San Francisco": "51.9",
- "Austin": "49.1"
- },
- {
- "Date": "2012-01-31",
- "New York": "43.5",
- "San Francisco": "50.0",
- "Austin": "62.8"
- },
- {
- "Date": "2012-02-01",
- "New York": "50.4",
- "San Francisco": "50.0",
- "Austin": "64.6"
- },
- {
- "Date": "2012-02-02",
- "New York": "45.8",
- "San Francisco": "51.3",
- "Austin": "61.1"
- },
- {
- "Date": "2012-02-03",
- "New York": "37.5",
- "San Francisco": "51.5",
- "Austin": "70.0"
- },
- {
- "Date": "2012-02-04",
- "New York": "40.8",
- "San Francisco": "52.0",
- "Austin": "61.3"
- },
- {
- "Date": "2012-02-05",
- "New York": "36.5",
- "San Francisco": "53.8",
- "Austin": "48.2"
- },
- {
- "Date": "2012-02-06",
- "New York": "39.1",
- "San Francisco": "54.6",
- "Austin": "44.2"
- },
- {
- "Date": "2012-02-07",
- "New York": "43.2",
- "San Francisco": "54.3",
- "Austin": "51.3"
- },
- {
- "Date": "2012-02-08",
- "New York": "36.5",
- "San Francisco": "51.9",
- "Austin": "49.2"
- },
- {
- "Date": "2012-02-09",
- "New York": "36.5",
- "San Francisco": "53.8",
- "Austin": "45.7"
- },
- {
- "Date": "2012-02-10",
- "New York": "38.3",
- "San Francisco": "53.9",
- "Austin": "54.1"
- },
- {
- "Date": "2012-02-11",
- "New York": "36.9",
- "San Francisco": "52.3",
- "Austin": "44.9"
- },
- {
- "Date": "2012-02-12",
- "New York": "29.7",
- "San Francisco": "50.1",
- "Austin": "36.5"
- },
- {
- "Date": "2012-02-13",
- "New York": "33.1",
- "San Francisco": "49.5",
- "Austin": "44.8"
- },
- {
- "Date": "2012-02-14",
- "New York": "39.6",
- "San Francisco": "48.6",
- "Austin": "52.3"
- },
- {
- "Date": "2012-02-15",
- "New York": "42.3",
- "San Francisco": "49.9",
- "Austin": "68.0"
- },
- {
- "Date": "2012-02-16",
- "New York": "39.7",
- "San Francisco": "52.4",
- "Austin": "54.6"
- },
- {
- "Date": "2012-02-17",
- "New York": "46.0",
- "San Francisco": "49.9",
- "Austin": "53.8"
- },
- {
- "Date": "2012-02-18",
- "New York": "41.2",
- "San Francisco": "51.6",
- "Austin": "56.2"
- },
- {
- "Date": "2012-02-19",
- "New York": "39.8",
- "San Francisco": "47.8",
- "Austin": "50.8"
- },
- {
- "Date": "2012-02-20",
- "New York": "38.1",
- "San Francisco": "48.7",
- "Austin": "53.0"
- },
- {
- "Date": "2012-02-21",
- "New York": "37.1",
- "San Francisco": "49.7",
- "Austin": "61.0"
- },
- {
- "Date": "2012-02-22",
- "New York": "45.5",
- "San Francisco": "53.4",
- "Austin": "68.8"
- },
- {
- "Date": "2012-02-23",
- "New York": "50.6",
- "San Francisco": "54.1",
- "Austin": "69.4"
- },
- {
- "Date": "2012-02-24",
- "New York": "42.7",
- "San Francisco": "55.9",
- "Austin": "59.3"
- },
- {
- "Date": "2012-02-25",
- "New York": "42.6",
- "San Francisco": "51.7",
- "Austin": "47.2"
- },
- {
- "Date": "2012-02-26",
- "New York": "36.9",
- "San Francisco": "47.7",
- "Austin": "47.7"
- },
- {
- "Date": "2012-02-27",
- "New York": "40.9",
- "San Francisco": "45.4",
- "Austin": "61.9"
- },
- {
- "Date": "2012-02-28",
- "New York": "45.9",
- "San Francisco": "47.0",
- "Austin": "67.2"
- },
- {
- "Date": "2012-02-29",
- "New York": "40.7",
- "San Francisco": "49.8",
- "Austin": "70.1"
- },
- {
- "Date": "2012-03-01",
- "New York": "41.3",
- "San Francisco": "48.9",
- "Austin": "62.1"
- },
- {
- "Date": "2012-03-02",
- "New York": "36.8",
- "San Francisco": "48.1",
- "Austin": "72.7"
- },
- {
- "Date": "2012-03-03",
- "New York": "47.6",
- "San Francisco": "50.7",
- "Austin": "59.0"
- },
- {
- "Date": "2012-03-04",
- "New York": "44.2",
- "San Francisco": "55.0",
- "Austin": "51.8"
- },
- {
- "Date": "2012-03-05",
- "New York": "38.5",
- "San Francisco": "48.8",
- "Austin": "55.0"
- },
- {
- "Date": "2012-03-06",
- "New York": "32.9",
- "San Francisco": "48.4",
- "Austin": "61.8"
- },
- {
- "Date": "2012-03-07",
- "New York": "43.3",
- "San Francisco": "49.9",
- "Austin": "67.1"
- },
- {
- "Date": "2012-03-08",
- "New York": "51.2",
- "San Francisco": "49.2",
- "Austin": "72.0"
- },
- {
- "Date": "2012-03-09",
- "New York": "47.8",
- "San Francisco": "51.7",
- "Austin": "46.4"
- },
- {
- "Date": "2012-03-10",
- "New York": "37.2",
- "San Francisco": "49.3",
- "Austin": "46.7"
- },
- {
- "Date": "2012-03-11",
- "New York": "42.9",
- "San Francisco": "50.0",
- "Austin": "56.9"
- },
- {
- "Date": "2012-03-12",
- "New York": "48.8",
- "San Francisco": "48.6",
- "Austin": "61.9"
- },
- {
- "Date": "2012-03-13",
- "New York": "52.6",
- "San Francisco": "53.9",
- "Austin": "68.8"
- },
- {
- "Date": "2012-03-14",
- "New York": "60.5",
- "San Francisco": "55.2",
- "Austin": "71.9"
- },
- {
- "Date": "2012-03-15",
- "New York": "47.2",
- "San Francisco": "55.9",
- "Austin": "72.0"
- },
- {
- "Date": "2012-03-16",
- "New York": "44.7",
- "San Francisco": "54.6",
- "Austin": "72.5"
- },
- {
- "Date": "2012-03-17",
- "New York": "48.2",
- "San Francisco": "48.2",
- "Austin": "71.7"
- },
- {
- "Date": "2012-03-18",
- "New York": "48.2",
- "San Francisco": "47.1",
- "Austin": "71.1"
- },
- {
- "Date": "2012-03-19",
- "New York": "53.1",
- "San Francisco": "45.8",
- "Austin": "73.0"
- },
- {
- "Date": "2012-03-20",
- "New York": "57.8",
- "San Francisco": "49.7",
- "Austin": "63.8"
- },
- {
- "Date": "2012-03-21",
- "New York": "57.5",
- "San Francisco": "51.4",
- "Austin": "60.0"
- },
- {
- "Date": "2012-03-22",
- "New York": "57.3",
- "San Francisco": "51.4",
- "Austin": "62.3"
- },
- {
- "Date": "2012-03-23",
- "New York": "61.7",
- "San Francisco": "48.4",
- "Austin": "61.1"
- },
- {
- "Date": "2012-03-24",
- "New York": "55.8",
- "San Francisco": "49.0",
- "Austin": "62.0"
- },
- {
- "Date": "2012-03-25",
- "New York": "48.4",
- "San Francisco": "46.4",
- "Austin": "64.6"
- },
- {
- "Date": "2012-03-26",
- "New York": "49.8",
- "San Francisco": "49.7",
- "Austin": "66.0"
- },
- {
- "Date": "2012-03-27",
- "New York": "39.6",
- "San Francisco": "54.1",
- "Austin": "65.8"
- },
- {
- "Date": "2012-03-28",
- "New York": "49.7",
- "San Francisco": "54.6",
- "Austin": "69.2"
- },
- {
- "Date": "2012-03-29",
- "New York": "56.8",
- "San Francisco": "52.3",
- "Austin": "69.5"
- },
- {
- "Date": "2012-03-30",
- "New York": "46.5",
- "San Francisco": "54.5",
- "Austin": "73.5"
- },
- {
- "Date": "2012-03-31",
- "New York": "42.2",
- "San Francisco": "56.2",
- "Austin": "73.9"
- },
- {
- "Date": "2012-04-01",
- "New York": "45.3",
- "San Francisco": "51.1",
- "Austin": "75.3"
- },
- {
- "Date": "2012-04-02",
- "New York": "48.1",
- "San Francisco": "50.5",
- "Austin": "75.4"
- },
- {
- "Date": "2012-04-03",
- "New York": "51.2",
- "San Francisco": "52.2",
- "Austin": "77.3"
- },
- {
- "Date": "2012-04-04",
- "New York": "61.0",
- "San Francisco": "50.6",
- "Austin": "67.0"
- },
- {
- "Date": "2012-04-05",
- "New York": "50.7",
- "San Francisco": "47.9",
- "Austin": "71.1"
- },
- {
- "Date": "2012-04-06",
- "New York": "48.0",
- "San Francisco": "47.4",
- "Austin": "70.4"
- },
- {
- "Date": "2012-04-07",
- "New York": "51.1",
- "San Francisco": "49.4",
- "Austin": "73.6"
- },
- {
- "Date": "2012-04-08",
- "New York": "55.7",
- "San Francisco": "50.0",
- "Austin": "71.1"
- },
- {
- "Date": "2012-04-09",
- "New York": "58.3",
- "San Francisco": "51.3",
- "Austin": "70.0"
- },
- {
- "Date": "2012-04-10",
- "New York": "55.0",
- "San Francisco": "53.8",
- "Austin": "69.0"
- },
- {
- "Date": "2012-04-11",
- "New York": "49.0",
- "San Francisco": "52.9",
- "Austin": "69.2"
- },
- {
- "Date": "2012-04-12",
- "New York": "51.7",
- "San Francisco": "53.9",
- "Austin": "74.5"
- },
- {
- "Date": "2012-04-13",
- "New York": "53.1",
- "San Francisco": "50.2",
- "Austin": "73.4"
- },
- {
- "Date": "2012-04-14",
- "New York": "55.2",
- "San Francisco": "50.9",
- "Austin": "76.0"
- },
- {
- "Date": "2012-04-15",
- "New York": "62.3",
- "San Francisco": "51.5",
- "Austin": "74.5"
- },
- {
- "Date": "2012-04-16",
- "New York": "62.9",
- "San Francisco": "51.9",
- "Austin": "63.6"
- },
- {
- "Date": "2012-04-17",
- "New York": "69.3",
- "San Francisco": "53.2",
- "Austin": "67.3"
- },
- {
- "Date": "2012-04-18",
- "New York": "59.0",
- "San Francisco": "53.0",
- "Austin": "65.1"
- },
- {
- "Date": "2012-04-19",
- "New York": "54.1",
- "San Francisco": "55.1",
- "Austin": "67.9"
- },
- {
- "Date": "2012-04-20",
- "New York": "56.5",
- "San Francisco": "55.8",
- "Austin": "68.9"
- },
- {
- "Date": "2012-04-21",
- "New York": "58.2",
- "San Francisco": "58.0",
- "Austin": "65.1"
- },
- {
- "Date": "2012-04-22",
- "New York": "52.4",
- "San Francisco": "52.8",
- "Austin": "65.4"
- },
- {
- "Date": "2012-04-23",
- "New York": "51.6",
- "San Francisco": "55.1",
- "Austin": "70.1"
- },
- {
- "Date": "2012-04-24",
- "New York": "49.3",
- "San Francisco": "57.9",
- "Austin": "67.0"
- },
- {
- "Date": "2012-04-25",
- "New York": "52.5",
- "San Francisco": "57.5",
- "Austin": "75.4"
- },
- {
- "Date": "2012-04-26",
- "New York": "50.5",
- "San Francisco": "55.3",
- "Austin": "77.5"
- },
- {
- "Date": "2012-04-27",
- "New York": "51.9",
- "San Francisco": "53.5",
- "Austin": "77.0"
- },
- {
- "Date": "2012-04-28",
- "New York": "47.4",
- "San Francisco": "54.7",
- "Austin": "77.7"
- },
- {
- "Date": "2012-04-29",
- "New York": "54.1",
- "San Francisco": "54.0",
- "Austin": "77.7"
- },
- {
- "Date": "2012-04-30",
- "New York": "51.9",
- "San Francisco": "53.4",
- "Austin": "77.7"
- },
- {
- "Date": "2012-05-01",
- "New York": "57.4",
- "San Francisco": "52.7",
- "Austin": "77.0"
- },
- {
- "Date": "2012-05-02",
- "New York": "53.7",
- "San Francisco": "50.7",
- "Austin": "77.9"
- },
- {
- "Date": "2012-05-03",
- "New York": "53.1",
- "San Francisco": "52.6",
- "Austin": "79.1"
- },
- {
- "Date": "2012-05-04",
- "New York": "57.2",
- "San Francisco": "53.4",
- "Austin": "80.1"
- },
- {
- "Date": "2012-05-05",
- "New York": "57.0",
- "San Francisco": "53.1",
- "Austin": "82.1"
- },
- {
- "Date": "2012-05-06",
- "New York": "56.6",
- "San Francisco": "56.5",
- "Austin": "79.0"
- },
- {
- "Date": "2012-05-07",
- "New York": "54.6",
- "San Francisco": "55.3",
- "Austin": "79.8"
- },
- {
- "Date": "2012-05-08",
- "New York": "57.9",
- "San Francisco": "52.0",
- "Austin": "70.0"
- },
- {
- "Date": "2012-05-09",
- "New York": "59.2",
- "San Francisco": "52.4",
- "Austin": "69.8"
- },
- {
- "Date": "2012-05-10",
- "New York": "61.1",
- "San Francisco": "53.4",
- "Austin": "71.3"
- },
- {
- "Date": "2012-05-11",
- "New York": "59.7",
- "San Francisco": "53.1",
- "Austin": "69.4"
- },
- {
- "Date": "2012-05-12",
- "New York": "64.1",
- "San Francisco": "49.9",
- "Austin": "72.0"
- },
- {
- "Date": "2012-05-13",
- "New York": "65.3",
- "San Francisco": "52.0",
- "Austin": "72.4"
- },
- {
- "Date": "2012-05-14",
- "New York": "64.2",
- "San Francisco": "56.0",
- "Austin": "72.5"
- },
- {
- "Date": "2012-05-15",
- "New York": "62.0",
- "San Francisco": "53.0",
- "Austin": "67.6"
- },
- {
- "Date": "2012-05-16",
- "New York": "63.8",
- "San Francisco": "51.0",
- "Austin": "69.0"
- },
- {
- "Date": "2012-05-17",
- "New York": "64.5",
- "San Francisco": "51.4",
- "Austin": "72.7"
- },
- {
- "Date": "2012-05-18",
- "New York": "61.0",
- "San Francisco": "52.2",
- "Austin": "73.7"
- },
- {
- "Date": "2012-05-19",
- "New York": "62.6",
- "San Francisco": "52.4",
- "Austin": "77.5"
- },
- {
- "Date": "2012-05-20",
- "New York": "66.2",
- "San Francisco": "54.5",
- "Austin": "75.8"
- },
- {
- "Date": "2012-05-21",
- "New York": "62.7",
- "San Francisco": "52.8",
- "Austin": "76.9"
- },
- {
- "Date": "2012-05-22",
- "New York": "63.7",
- "San Francisco": "53.9",
- "Austin": "78.8"
- },
- {
- "Date": "2012-05-23",
- "New York": "66.4",
- "San Francisco": "56.5",
- "Austin": "77.7"
- },
- {
- "Date": "2012-05-24",
- "New York": "64.5",
- "San Francisco": "54.7",
- "Austin": "80.6"
- },
- {
- "Date": "2012-05-25",
- "New York": "65.4",
- "San Francisco": "52.5",
- "Austin": "81.4"
- },
- {
- "Date": "2012-05-26",
- "New York": "69.4",
- "San Francisco": "52.1",
- "Austin": "82.3"
- },
- {
- "Date": "2012-05-27",
- "New York": "71.9",
- "San Francisco": "52.2",
- "Austin": "80.3"
- },
- {
- "Date": "2012-05-28",
- "New York": "74.4",
- "San Francisco": "52.9",
- "Austin": "80.3"
- },
- {
- "Date": "2012-05-29",
- "New York": "75.9",
- "San Francisco": "52.1",
- "Austin": "82.2"
- },
- {
- "Date": "2012-05-30",
- "New York": "72.9",
- "San Francisco": "52.1",
- "Austin": "81.9"
- },
- {
- "Date": "2012-05-31",
- "New York": "72.5",
- "San Francisco": "53.3",
- "Austin": "82.4"
- },
- {
- "Date": "2012-06-01",
- "New York": "67.2",
- "San Francisco": "54.8",
- "Austin": "77.9"
- },
- {
- "Date": "2012-06-02",
- "New York": "68.3",
- "San Francisco": "54.0",
- "Austin": "81.1"
- },
- {
- "Date": "2012-06-03",
- "New York": "67.7",
- "San Francisco": "52.3",
- "Austin": "82.2"
- },
- {
- "Date": "2012-06-04",
- "New York": "61.9",
- "San Francisco": "55.3",
- "Austin": "81.2"
- },
- {
- "Date": "2012-06-05",
- "New York": "58.3",
- "San Francisco": "53.5",
- "Austin": "83.0"
- },
- {
- "Date": "2012-06-06",
- "New York": "61.7",
- "San Francisco": "54.1",
- "Austin": "83.2"
- },
- {
- "Date": "2012-06-07",
- "New York": "66.7",
- "San Francisco": "53.9",
- "Austin": "82.1"
- },
- {
- "Date": "2012-06-08",
- "New York": "68.7",
- "San Francisco": "54.4",
- "Austin": "77.5"
- },
- {
- "Date": "2012-06-09",
- "New York": "72.2",
- "San Francisco": "55.0",
- "Austin": "77.9"
- },
- {
- "Date": "2012-06-10",
- "New York": "72.6",
- "San Francisco": "60.0",
- "Austin": "82.9"
- },
- {
- "Date": "2012-06-11",
- "New York": "69.2",
- "San Francisco": "57.2",
- "Austin": "86.8"
- },
- {
- "Date": "2012-06-12",
- "New York": "66.9",
- "San Francisco": "55.1",
- "Austin": "85.3"
- },
- {
- "Date": "2012-06-13",
- "New York": "66.7",
- "San Francisco": "53.3",
- "Austin": "76.9"
- },
- {
- "Date": "2012-06-14",
- "New York": "67.7",
- "San Francisco": "53.4",
- "Austin": "84.5"
- },
- {
- "Date": "2012-06-15",
- "New York": "68.5",
- "San Francisco": "54.6",
- "Austin": "84.4"
- },
- {
- "Date": "2012-06-16",
- "New York": "67.5",
- "San Francisco": "57.0",
- "Austin": "83.8"
- },
- {
- "Date": "2012-06-17",
- "New York": "64.2",
- "San Francisco": "55.6",
- "Austin": "82.5"
- },
- {
- "Date": "2012-06-18",
- "New York": "61.7",
- "San Francisco": "52.5",
- "Austin": "82.9"
- },
- {
- "Date": "2012-06-19",
- "New York": "66.4",
- "San Francisco": "53.9",
- "Austin": "82.5"
- },
- {
- "Date": "2012-06-20",
- "New York": "77.9",
- "San Francisco": "55.3",
- "Austin": "81.3"
- },
- {
- "Date": "2012-06-21",
- "New York": "88.3",
- "San Francisco": "53.3",
- "Austin": "80.8"
- },
- {
- "Date": "2012-06-22",
- "New York": "82.2",
- "San Francisco": "54.1",
- "Austin": "81.7"
- },
- {
- "Date": "2012-06-23",
- "New York": "77.0",
- "San Francisco": "55.2",
- "Austin": "83.9"
- },
- {
- "Date": "2012-06-24",
- "New York": "75.4",
- "San Francisco": "55.8",
- "Austin": "85.5"
- },
- {
- "Date": "2012-06-25",
- "New York": "70.9",
- "San Francisco": "56.8",
- "Austin": "87.2"
- },
- {
- "Date": "2012-06-26",
- "New York": "65.9",
- "San Francisco": "57.5",
- "Austin": "88.0"
- },
- {
- "Date": "2012-06-27",
- "New York": "73.5",
- "San Francisco": "57.7",
- "Austin": "89.6"
- },
- {
- "Date": "2012-06-28",
- "New York": "77.4",
- "San Francisco": "56.6",
- "Austin": "86.7"
- },
- {
- "Date": "2012-06-29",
- "New York": "79.6",
- "San Francisco": "56.4",
- "Austin": "85.3"
- },
- {
- "Date": "2012-06-30",
- "New York": "84.2",
- "San Francisco": "58.4",
- "Austin": "81.7"
- },
- {
- "Date": "2012-07-01",
- "New York": "81.8",
- "San Francisco": "58.8",
- "Austin": "78.5"
- },
- {
- "Date": "2012-07-02",
- "New York": "82.5",
- "San Francisco": "56.4",
- "Austin": "83.1"
- },
- {
- "Date": "2012-07-03",
- "New York": "80.2",
- "San Francisco": "56.5",
- "Austin": "83.1"
- },
- {
- "Date": "2012-07-04",
- "New York": "77.8",
- "San Francisco": "55.8",
- "Austin": "84.5"
- },
- {
- "Date": "2012-07-05",
- "New York": "86.1",
- "San Francisco": "54.8",
- "Austin": "84.6"
- },
- {
- "Date": "2012-07-06",
- "New York": "79.9",
- "San Francisco": "54.9",
- "Austin": "84.2"
- },
- {
- "Date": "2012-07-07",
- "New York": "83.5",
- "San Francisco": "54.7",
- "Austin": "86.7"
- },
- {
- "Date": "2012-07-08",
- "New York": "81.5",
- "San Francisco": "52.8",
- "Austin": "84.3"
- },
- {
- "Date": "2012-07-09",
- "New York": "77.8",
- "San Francisco": "53.7",
- "Austin": "83.7"
- },
- {
- "Date": "2012-07-10",
- "New York": "76.1",
- "San Francisco": "53.1",
- "Austin": "77.1"
- },
- {
- "Date": "2012-07-11",
- "New York": "76.3",
- "San Francisco": "52.7",
- "Austin": "77.4"
- },
- {
- "Date": "2012-07-12",
- "New York": "75.8",
- "San Francisco": "52.0",
- "Austin": "80.6"
- },
- {
- "Date": "2012-07-13",
- "New York": "77.2",
- "San Francisco": "53.4",
- "Austin": "81.4"
- },
- {
- "Date": "2012-07-14",
- "New York": "79.3",
- "San Francisco": "54.0",
- "Austin": "80.2"
- },
- {
- "Date": "2012-07-15",
- "New York": "78.9",
- "San Francisco": "54.0",
- "Austin": "81.8"
- },
- {
- "Date": "2012-07-16",
- "New York": "79.6",
- "San Francisco": "54.5",
- "Austin": "77.3"
- },
- {
- "Date": "2012-07-17",
- "New York": "83.3",
- "San Francisco": "56.7",
- "Austin": "80.8"
- },
- {
- "Date": "2012-07-18",
- "New York": "84.3",
- "San Francisco": "57.5",
- "Austin": "81.6"
- },
- {
- "Date": "2012-07-19",
- "New York": "75.1",
- "San Francisco": "57.1",
- "Austin": "80.9"
- },
- {
- "Date": "2012-07-20",
- "New York": "68.4",
- "San Francisco": "58.1",
- "Austin": "83.9"
- },
- {
- "Date": "2012-07-21",
- "New York": "68.4",
- "San Francisco": "57.6",
- "Austin": "85.6"
- },
- {
- "Date": "2012-07-22",
- "New York": "72.2",
- "San Francisco": "56.0",
- "Austin": "83.6"
- },
- {
- "Date": "2012-07-23",
- "New York": "75.6",
- "San Francisco": "56.6",
- "Austin": "84.0"
- },
- {
- "Date": "2012-07-24",
- "New York": "82.6",
- "San Francisco": "57.8",
- "Austin": "83.0"
- },
- {
- "Date": "2012-07-25",
- "New York": "78.4",
- "San Francisco": "57.5",
- "Austin": "84.8"
- },
- {
- "Date": "2012-07-26",
- "New York": "77.0",
- "San Francisco": "56.4",
- "Austin": "84.4"
- },
- {
- "Date": "2012-07-27",
- "New York": "79.4",
- "San Francisco": "55.3",
- "Austin": "84.3"
- },
- {
- "Date": "2012-07-28",
- "New York": "77.4",
- "San Francisco": "55.0",
- "Austin": "83.9"
- },
- {
- "Date": "2012-07-29",
- "New York": "72.5",
- "San Francisco": "55.6",
- "Austin": "85.0"
- },
- {
- "Date": "2012-07-30",
- "New York": "72.9",
- "San Francisco": "55.6",
- "Austin": "84.9"
- },
- {
- "Date": "2012-07-31",
- "New York": "73.6",
- "San Francisco": "55.9",
- "Austin": "86.3"
- },
- {
- "Date": "2012-08-01",
- "New York": "75.0",
- "San Francisco": "55.4",
- "Austin": "86.5"
- },
- {
- "Date": "2012-08-02",
- "New York": "77.7",
- "San Francisco": "54.4",
- "Austin": "85.8"
- },
- {
- "Date": "2012-08-03",
- "New York": "79.7",
- "San Francisco": "53.7",
- "Austin": "85.3"
- },
- {
- "Date": "2012-08-04",
- "New York": "79.6",
- "San Francisco": "54.1",
- "Austin": "86.0"
- },
- {
- "Date": "2012-08-05",
- "New York": "81.5",
- "San Francisco": "57.8",
- "Austin": "84.2"
- },
- {
- "Date": "2012-08-06",
- "New York": "80.0",
- "San Francisco": "58.2",
- "Austin": "81.9"
- },
- {
- "Date": "2012-08-07",
- "New York": "75.7",
- "San Francisco": "58.0",
- "Austin": "86.5"
- },
- {
- "Date": "2012-08-08",
- "New York": "77.8",
- "San Francisco": "57.0",
- "Austin": "86.1"
- },
- {
- "Date": "2012-08-09",
- "New York": "78.6",
- "San Francisco": "55.0",
- "Austin": "86.8"
- },
- {
- "Date": "2012-08-10",
- "New York": "77.8",
- "San Francisco": "54.8",
- "Austin": "88.0"
- },
- {
- "Date": "2012-08-11",
- "New York": "78.5",
- "San Francisco": "53.0",
- "Austin": "85.1"
- },
- {
- "Date": "2012-08-12",
- "New York": "78.8",
- "San Francisco": "52.5",
- "Austin": "87.4"
- },
- {
- "Date": "2012-08-13",
- "New York": "78.6",
- "San Francisco": "53.3",
- "Austin": "88.0"
- },
- {
- "Date": "2012-08-14",
- "New York": "76.8",
- "San Francisco": "53.9",
- "Austin": "88.0"
- },
- {
- "Date": "2012-08-15",
- "New York": "76.7",
- "San Francisco": "56.2",
- "Austin": "87.2"
- },
- {
- "Date": "2012-08-16",
- "New York": "75.9",
- "San Francisco": "57.1",
- "Austin": "86.1"
- },
- {
- "Date": "2012-08-17",
- "New York": "77.6",
- "San Francisco": "55.3",
- "Austin": "86.8"
- },
- {
- "Date": "2012-08-18",
- "New York": "72.6",
- "San Francisco": "56.2",
- "Austin": "84.9"
- },
- {
- "Date": "2012-08-19",
- "New York": "70.4",
- "San Francisco": "54.3",
- "Austin": "76.8"
- },
- {
- "Date": "2012-08-20",
- "New York": "71.8",
- "San Francisco": "53.1",
- "Austin": "80.6"
- },
- {
- "Date": "2012-08-21",
- "New York": "73.6",
- "San Francisco": "53.4",
- "Austin": "80.0"
- },
- {
- "Date": "2012-08-22",
- "New York": "74.7",
- "San Francisco": "54.5",
- "Austin": "78.2"
- },
- {
- "Date": "2012-08-23",
- "New York": "74.6",
- "San Francisco": "55.7",
- "Austin": "79.1"
- },
- {
- "Date": "2012-08-24",
- "New York": "76.0",
- "San Francisco": "54.8",
- "Austin": "81.9"
- },
- {
- "Date": "2012-08-25",
- "New York": "76.2",
- "San Francisco": "53.8",
- "Austin": "84.7"
- },
- {
- "Date": "2012-08-26",
- "New York": "73.4",
- "San Francisco": "56.5",
- "Austin": "83.5"
- },
- {
- "Date": "2012-08-27",
- "New York": "74.6",
- "San Francisco": "58.3",
- "Austin": "82.1"
- },
- {
- "Date": "2012-08-28",
- "New York": "79.4",
- "San Francisco": "58.7",
- "Austin": "84.0"
- },
- {
- "Date": "2012-08-29",
- "New York": "74.7",
- "San Francisco": "57.5",
- "Austin": "85.7"
- },
- {
- "Date": "2012-08-30",
- "New York": "73.5",
- "San Francisco": "55.9",
- "Austin": "87.2"
- },
- {
- "Date": "2012-08-31",
- "New York": "77.9",
- "San Francisco": "55.4",
- "Austin": "82.9"
- },
- {
- "Date": "2012-09-01",
- "New York": "80.7",
- "San Francisco": "55.7",
- "Austin": "84.8"
- },
- {
- "Date": "2012-09-02",
- "New York": "75.1",
- "San Francisco": "53.1",
- "Austin": "83.9"
- },
- {
- "Date": "2012-09-03",
- "New York": "73.5",
- "San Francisco": "53.5",
- "Austin": "85.5"
- },
- {
- "Date": "2012-09-04",
- "New York": "73.5",
- "San Francisco": "52.5",
- "Austin": "86.4"
- },
- {
- "Date": "2012-09-05",
- "New York": "77.7",
- "San Francisco": "54.5",
- "Austin": "85.8"
- },
- {
- "Date": "2012-09-06",
- "New York": "74.2",
- "San Francisco": "56.3",
- "Austin": "85.4"
- },
- {
- "Date": "2012-09-07",
- "New York": "76.0",
- "San Francisco": "56.4",
- "Austin": "85.3"
- },
- {
- "Date": "2012-09-08",
- "New York": "77.1",
- "San Francisco": "56.5",
- "Austin": "81.9"
- },
- {
- "Date": "2012-09-09",
- "New York": "69.7",
- "San Francisco": "56.4",
- "Austin": "74.8"
- },
- {
- "Date": "2012-09-10",
- "New York": "67.8",
- "San Francisco": "55.4",
- "Austin": "71.6"
- },
- {
- "Date": "2012-09-11",
- "New York": "64.0",
- "San Francisco": "56.2",
- "Austin": "75.9"
- },
- {
- "Date": "2012-09-12",
- "New York": "68.1",
- "San Francisco": "55.7",
- "Austin": "82.1"
- },
- {
- "Date": "2012-09-13",
- "New York": "69.3",
- "San Francisco": "54.3",
- "Austin": "80.5"
- },
- {
- "Date": "2012-09-14",
- "New York": "70.0",
- "San Francisco": "55.2",
- "Austin": "70.0"
- },
- {
- "Date": "2012-09-15",
- "New York": "69.3",
- "San Francisco": "54.3",
- "Austin": "71.2"
- },
- {
- "Date": "2012-09-16",
- "New York": "66.3",
- "San Francisco": "52.9",
- "Austin": "70.3"
- },
- {
- "Date": "2012-09-17",
- "New York": "67.0",
- "San Francisco": "54.8",
- "Austin": "72.1"
- },
- {
- "Date": "2012-09-18",
- "New York": "72.8",
- "San Francisco": "54.8",
- "Austin": "73.7"
- },
- {
- "Date": "2012-09-19",
- "New York": "67.2",
- "San Francisco": "56.8",
- "Austin": "72.7"
- },
- {
- "Date": "2012-09-20",
- "New York": "62.1",
- "San Francisco": "55.4",
- "Austin": "71.7"
- },
- {
- "Date": "2012-09-21",
- "New York": "64.0",
- "San Francisco": "55.8",
- "Austin": "72.9"
- },
- {
- "Date": "2012-09-22",
- "New York": "65.5",
- "San Francisco": "55.9",
- "Austin": "73.1"
- },
- {
- "Date": "2012-09-23",
- "New York": "65.7",
- "San Francisco": "52.8",
- "Austin": "75.6"
- },
- {
- "Date": "2012-09-24",
- "New York": "60.4",
- "San Francisco": "54.5",
- "Austin": "78.3"
- },
- {
- "Date": "2012-09-25",
- "New York": "63.2",
- "San Francisco": "53.3",
- "Austin": "78.3"
- },
- {
- "Date": "2012-09-26",
- "New York": "68.5",
- "San Francisco": "53.6",
- "Austin": "79.6"
- },
- {
- "Date": "2012-09-27",
- "New York": "69.2",
- "San Francisco": "52.1",
- "Austin": "76.4"
- },
- {
- "Date": "2012-09-28",
- "New York": "68.7",
- "San Francisco": "52.6",
- "Austin": "77.2"
- },
- {
- "Date": "2012-09-29",
- "New York": "62.5",
- "San Francisco": "53.9",
- "Austin": "75.2"
- },
- {
- "Date": "2012-09-30",
- "New York": "62.3",
- "San Francisco": "55.1",
- "Austin": "71.9"
- }
-]
diff --git a/packages/chart/examples/feature/bar/Barchart_with_negative.json b/packages/chart/examples/feature/bar/Barchart_with_negative.json
deleted file mode 100644
index 6b1a6ca483..0000000000
--- a/packages/chart/examples/feature/bar/Barchart_with_negative.json
+++ /dev/null
@@ -1,34 +0,0 @@
-[
- {
- "Category": "One",
- "Values": 888
- },
- {
- "Category": "Two",
- "Values": 400
- },
- {
- "Category": "Three",
- "Values": -100
- },
- {
- "Category": "Four",
- "Values": 500
- },
- {
- "Category": "Five",
- "Values": 700
- },
- {
- "Category": "Six",
- "Values": -1000
- },
- {
- "Category": "Seven",
- "Values": 300
- },
- {
- "Category": "Eight",
- "Values": -500
- }
-]
diff --git a/packages/chart/examples/feature/bar/tall-data.json b/packages/chart/examples/feature/bar/__data__/tall-data.json
similarity index 100%
rename from packages/chart/examples/feature/bar/tall-data.json
rename to packages/chart/examples/feature/bar/__data__/tall-data.json
diff --git a/packages/chart/examples/feature/bar/additional-column-tooltip.json b/packages/chart/examples/feature/bar/additional-column-tooltip.json
index 66c3683121..094eb6219e 100644
--- a/packages/chart/examples/feature/bar/additional-column-tooltip.json
+++ b/packages/chart/examples/feature/bar/additional-column-tooltip.json
@@ -360,8 +360,8 @@
"isStacked": false
},
"visualizationType": "Bar",
- "dataUrl": "examples/feature/bar/tall-data.json",
- "dataFileName": "tall-data.json",
+ "dataUrl": "examples/feature/bar/__data__/tall-data.json",
+ "dataFileName": "__data__/tall-data.json",
"dataFileSourceType": "file",
"dataDescription": {
"horizontal": false,
@@ -443,4 +443,4 @@
"Flu-upper_ci": 67
}
]
-}
\ No newline at end of file
+}
diff --git a/packages/chart/examples/feature/boxplot/box-plot-data.json b/packages/chart/examples/feature/boxplot/box-plot-data.json
deleted file mode 100644
index f4584a1194..0000000000
--- a/packages/chart/examples/feature/boxplot/box-plot-data.json
+++ /dev/null
@@ -1,71 +0,0 @@
-[
- {
- "x": "Group 1",
- "min": -3.529439249291613,
- "firstQuartile": 2.498913996933074,
- "median": 6,
- "thirdQuartile": 6.517816161082865,
- "max": 12.546169407307552,
- "outliers": [
- -4.222649440089676,
- -3.7995254226812145,
- 12.669680018702707
- ]
- },
- {
- "x": "Group 2",
- "min": -2.961278855962981,
- "firstQuartile": 3.1553763355078277,
- "median": 5.31642875968012,
- "thirdQuartile": 7.233146463155033,
- "max": 13.349801654625843,
- "outliers": [
- -4.5962772985737645,
- 14.42798091207488,
- 14.832072412460995
- ]
- },
- {
- "x": "Group 3",
- "min": -0.784362943544294,
- "firstQuartile": 5.600233888319485,
- "median": 7.606034555385235,
- "thirdQuartile": 9.85663177622867,
- "max": 16.24122860809245,
- "outliers": [
- -2.0568265981730285,
- -2.036299998010181,
- -1.634595257757523,
- -0.9751707921193091,
- -0.9256799494292718,
- -0.813852054679872,
- 16.255225428689318,
- 19.221712546396496
- ]
- },
- {
- "x": "Group 4",
- "min": -3.4976011611041598,
- "firstQuartile": 2.362493132101971,
- "median": 4.364242960871863,
- "thirdQuartile": 6.269222660906058,
- "max": 12.129316954112188,
- "outliers": [
- -5.912277243480174,
- -4.535668956980487,
- -4.255719319016919,
- -4.175200716132927,
- -4.1021204775116455,
- -3.7913796362224352,
- -3.6909919981778567,
- -3.6261129831962697,
- 12.169135739844744,
- 12.1724073804239,
- 12.191268834215071,
- 12.236896118210165,
- 12.34513716605812,
- 12.826785108558722,
- 13.048968511771164
- ]
- }
-]
diff --git a/packages/chart/examples/feature/boxplot/boxplot-data.json b/packages/chart/examples/feature/boxplot/boxplot-data.json
deleted file mode 100644
index 59dbf2faf3..0000000000
--- a/packages/chart/examples/feature/boxplot/boxplot-data.json
+++ /dev/null
@@ -1,156 +0,0 @@
-[
- {
- "Group_Category": "category one",
- "Value": "21",
- "Price": "100",
- "Month": "January",
- "Radius": "10"
- },
- {
- "Group_Category": "category one",
- "Value": "19",
- "Price": "105",
- "Month": "January",
- "Radius": "12"
- },
- {
- "Group_Category": "category one",
- "Value": "23",
- "Price": "110",
- "Month": "February",
- "Radius": "7"
- },
- {
- "Group_Category": "category one",
- "Value": "24",
- "Price": "115",
- "Month": "February",
- "Radius": "5"
- },
- {
- "Group_Category": "category two",
- "Value": "18",
- "Price": "120",
- "Month": "March",
- "Radius": "9"
- },
- {
- "Group_Category": "category two",
- "Value": "10",
- "Price": "125",
- "Month": "March",
- "Radius": "14"
- },
- {
- "Group_Category": "category two",
- "Value": "12",
- "Price": "130",
- "Month": "April",
- "Radius": "11"
- },
- {
- "Group_Category": "category two",
- "Value": "19",
- "Price": "135",
- "Month": "April",
- "Radius": "6"
- },
- {
- "Group_Category": "category three",
- "Value": "30",
- "Price": "140",
- "Month": "May",
- "Radius": "8"
- },
- {
- "Group_Category": "category three",
- "Value": "35",
- "Price": "145",
- "Month": "May",
- "Radius": "10"
- },
- {
- "Group_Category": "category three",
- "Value": "36",
- "Price": "150",
- "Month": "June",
- "Radius": "12"
- },
- {
- "Group_Category": "category three",
- "Value": "46",
- "Price": "155",
- "Month": "June",
- "Radius": "13"
- },
- {
- "Group_Category": "category four",
- "Value": "30",
- "Price": "160",
- "Month": "July",
- "Radius": "5"
- },
- {
- "Group_Category": "category four",
- "Value": "40",
- "Price": "165",
- "Month": "July",
- "Radius": "9"
- },
- {
- "Group_Category": "category four",
- "Value": "50",
- "Price": "170",
- "Month": "August",
- "Radius": "14"
- },
- {
- "Group_Category": "category four",
- "Value": "50",
- "Price": "175",
- "Month": "August",
- "Radius": "15"
- },
- {
- "Group_Category": "category four",
- "Value": "85",
- "Price": "180",
- "Month": "September",
- "Radius": "7"
- },
- {
- "Group_Category": "category four",
- "Value": "82",
- "Price": "185",
- "Month": "September",
- "Radius": "8"
- },
- {
- "Group_Category": "category four",
- "Value": "43",
- "Price": "190",
- "Month": "October",
- "Radius": "10"
- },
- {
- "Group_Category": "category four",
- "Value": "42",
- "Price": "195",
- "Month": "October",
- "Radius": "12"
- },
- {
- "Group_Category": "category four",
- "Value": "41",
- "Price": "200",
- "Month": "November",
- "Radius": "11"
- },
- {
- "Group_Category": "category four",
- "Value": "21",
- "Price": "205",
- "Month": "November",
- "Radius": "9"
- }
-]
diff --git a/packages/chart/examples/feature/combo/combochart-categories_are_numbers .json b/packages/chart/examples/feature/combo/combochart-categories_are_numbers .json
deleted file mode 100644
index 5e41154390..0000000000
--- a/packages/chart/examples/feature/combo/combochart-categories_are_numbers .json
+++ /dev/null
@@ -1,18 +0,0 @@
-[
- {
- "Year": 2000,
- "Value": 1.45
- },
- {
- "Year": 2001,
- "Value": 1.55
- },
- {
- "Year": 2002,
- "Value": 1.43
- },
- {
- "Year": 2003,
- "Value": 1.33
- }
-]
diff --git a/packages/chart/examples/feature/deviation/planet-deviation-data.json b/packages/chart/examples/feature/deviation/__data__/planet-deviation-data.json
similarity index 100%
rename from packages/chart/examples/feature/deviation/planet-deviation-data.json
rename to packages/chart/examples/feature/deviation/__data__/planet-deviation-data.json
diff --git a/packages/chart/examples/feature/deviation/planet-deviation-config.json b/packages/chart/examples/feature/deviation/planet-deviation-config.json
index 31f6f6d469..be25823bc5 100644
--- a/packages/chart/examples/feature/deviation/planet-deviation-config.json
+++ b/packages/chart/examples/feature/deviation/planet-deviation-config.json
@@ -155,7 +155,7 @@
"accent": true,
"background": true
},
- "dataUrl": "/examples/feature/deviation/planet-deviation-data.json",
+ "dataUrl": "/examples/feature/deviation/__data__/planet-deviation-data.json",
"visualizationType": "Deviation Bar",
"series": [
{
@@ -165,4 +165,4 @@
}
],
"dataCutoff": "0.5"
-}
\ No newline at end of file
+}
diff --git a/packages/chart/examples/feature/forest-plot/log.json b/packages/chart/examples/feature/forest-plot/log.json
deleted file mode 100644
index ebd019ad35..0000000000
--- a/packages/chart/examples/feature/forest-plot/log.json
+++ /dev/null
@@ -1,26 +0,0 @@
-[
- {
- "description": "Study 1",
- "low": 0.88,
- "high": 0.95,
- "effect": 0.92
- },
- {
- "description": "Study 2",
- "low": 0.84,
- "high": 0.94,
- "effect": 0.89
- },
- {
- "description": "Study 3",
- "low": 0.88,
- "high": 0.98,
- "effect": 0.93
- },
- {
- "description": "Study 4",
- "low": 0.91,
- "high": 0.99,
- "effect": 0.97
- }
-]
\ No newline at end of file
diff --git a/packages/chart/examples/feature/paired-bar/paired-bar-data.json b/packages/chart/examples/feature/paired-bar/__data__/paired-bar-data.json
similarity index 100%
rename from packages/chart/examples/feature/paired-bar/paired-bar-data.json
rename to packages/chart/examples/feature/paired-bar/__data__/paired-bar-data.json
diff --git a/packages/chart/examples/feature/paired-bar/paired-bar-formatted.json b/packages/chart/examples/feature/paired-bar/__data__/paired-bar-formatted.json
similarity index 100%
rename from packages/chart/examples/feature/paired-bar/paired-bar-formatted.json
rename to packages/chart/examples/feature/paired-bar/__data__/paired-bar-formatted.json
diff --git a/packages/chart/examples/feature/paired-bar/paired-bar-example.json b/packages/chart/examples/feature/paired-bar/paired-bar-example.json
index 8d76f338f3..eebe0b4856 100644
--- a/packages/chart/examples/feature/paired-bar/paired-bar-example.json
+++ b/packages/chart/examples/feature/paired-bar/paired-bar-example.json
@@ -1,6 +1,6 @@
{
"title": "Paired Bar Chart Example",
- "dataUrl": "/examples/feature/paired-bar/paired-bar-data.json",
+ "dataUrl": "/examples/feature/paired-bar/__data__/paired-bar-data.json",
"animate": true,
"animateReplay": true,
"visualizationType": "Paired Bar",
@@ -53,4 +53,4 @@
"runtime": {
"horizontal": true
}
-}
\ No newline at end of file
+}
diff --git a/packages/chart/examples/feature/tests-case-rate/case-rate-example-data.json b/packages/chart/examples/feature/tests-case-rate/__data__/case-rate-example-data.json
similarity index 100%
rename from packages/chart/examples/feature/tests-case-rate/case-rate-example-data.json
rename to packages/chart/examples/feature/tests-case-rate/__data__/case-rate-example-data.json
diff --git a/packages/chart/examples/feature/tests-case-rate/case-rate-example-config.json b/packages/chart/examples/feature/tests-case-rate/case-rate-example-config.json
index f6106f3a1d..ebfd7e4aa9 100644
--- a/packages/chart/examples/feature/tests-case-rate/case-rate-example-config.json
+++ b/packages/chart/examples/feature/tests-case-rate/case-rate-example-config.json
@@ -1,7 +1,7 @@
{
"title": "Case Rate Data",
"theme": "theme-blue",
- "dataUrl": "/examples/feature/tests-case-rate/case-rate-example-data.json",
+ "dataUrl": "/examples/feature/tests-case-rate/__data__/case-rate-example-data.json",
"visualizationType": "Bar",
"visualizationSubType": "horizontal",
"series": [],
@@ -33,4 +33,4 @@
"expanded": true,
"download": true
}
-}
\ No newline at end of file
+}
diff --git a/packages/chart/examples/feature/tests-covid/covid-example-data-confidence.json b/packages/chart/examples/feature/tests-covid/__data__/covid-example-data-confidence.json
similarity index 100%
rename from packages/chart/examples/feature/tests-covid/covid-example-data-confidence.json
rename to packages/chart/examples/feature/tests-covid/__data__/covid-example-data-confidence.json
diff --git a/packages/chart/examples/feature/tests-covid/covid-example-data.json b/packages/chart/examples/feature/tests-covid/__data__/covid-example-data.json
similarity index 100%
rename from packages/chart/examples/feature/tests-covid/covid-example-data.json
rename to packages/chart/examples/feature/tests-covid/__data__/covid-example-data.json
diff --git a/packages/chart/examples/feature/tests-covid/covid-confidence-example-config.json b/packages/chart/examples/feature/tests-covid/covid-confidence-example-config.json
index 0ae685f2d6..720e1a3738 100644
--- a/packages/chart/examples/feature/tests-covid/covid-confidence-example-config.json
+++ b/packages/chart/examples/feature/tests-covid/covid-confidence-example-config.json
@@ -1,6 +1,6 @@
{
"title": "Confidence Age-adjusted COVID-19-associated hospitalization rates by race and ethnicity — COVID-NET, March 1–December 26, 2020",
- "dataUrl": "/examples/feature/tests-covid/covid-example-data-confidence.json",
+ "dataUrl": "/examples/feature/tests-covid/__data__/covid-example-data-confidence.json",
"visualizationType": "Bar",
"fontSize": "small",
"series": [
@@ -37,4 +37,4 @@
"label": "Age-adjusted COVID-19-associated hospitalization rates by race and ethnicity",
"expanded": true
}
-}
\ No newline at end of file
+}
diff --git a/packages/chart/examples/feature/tests-covid/covid-example-config.json b/packages/chart/examples/feature/tests-covid/covid-example-config.json
index 6b91cf14bb..739c64bc59 100644
--- a/packages/chart/examples/feature/tests-covid/covid-example-config.json
+++ b/packages/chart/examples/feature/tests-covid/covid-example-config.json
@@ -1,7 +1,7 @@
{
"title": "Non Configdence Age-adjusted COVID-19-associated hospitalization rates by race and ethnicity — COVID-NET, March 1–December 26, 2020",
"theme": "theme-brown",
- "dataUrl": "/examples/feature/tests-covid/covid-example-data.json",
+ "dataUrl": "/examples/feature/tests-covid/__data__/covid-example-data.json",
"visualizationType": "Bar",
"visualizationSubType": "horizontal",
"series": [
@@ -37,4 +37,4 @@
"expanded": true,
"download": true
}
-}
\ No newline at end of file
+}
diff --git a/packages/chart/examples/feature/tests-cutoff/cutoff-example-data.json b/packages/chart/examples/feature/tests-cutoff/__data__/cutoff-example-data.json
similarity index 100%
rename from packages/chart/examples/feature/tests-cutoff/cutoff-example-data.json
rename to packages/chart/examples/feature/tests-cutoff/__data__/cutoff-example-data.json
diff --git a/packages/chart/examples/feature/tests-cutoff/cutoff-example-config.json b/packages/chart/examples/feature/tests-cutoff/cutoff-example-config.json
index deef847bc1..51c765e280 100644
--- a/packages/chart/examples/feature/tests-cutoff/cutoff-example-config.json
+++ b/packages/chart/examples/feature/tests-cutoff/cutoff-example-config.json
@@ -1,7 +1,7 @@
{
"title": "Data Cutoff Example (< 0.1)",
"theme": "theme-blue",
- "dataUrl": "/examples/feature/tests-cutoff/cutoff-example-data.json",
+ "dataUrl": "/examples/feature/tests-cutoff/__data__/cutoff-example-data.json",
"animate": true,
"animateReplay": true,
"visualizationType": "Line",
@@ -39,4 +39,4 @@
"expanded": true,
"download": true
}
-}
\ No newline at end of file
+}
diff --git a/packages/chart/examples/feature/tests-date-exclusions/date-exclusions-data.json b/packages/chart/examples/feature/tests-date-exclusions/date-exclusions-data.json
deleted file mode 100644
index 9d3c11fa67..0000000000
--- a/packages/chart/examples/feature/tests-date-exclusions/date-exclusions-data.json
+++ /dev/null
@@ -1,162 +0,0 @@
-[
- {
- "Date": "01-01-2021",
- "Sex": "Male",
- "Cases per 100K": "6714"
- },
- {
- "Date": "02-01-2021",
- "Sex": "Male",
- "Cases per 100K": "7260"
- },
- {
- "Date": "03-01-2021",
- "Sex": "Male",
- "Cases per 100K": "6808"
- },
- {
- "Date": "04-01-2021",
- "Sex": "Male",
- "Cases per 100K": "6225"
- },
- {
- "Date": "05-01-2021",
- "Sex": "Male",
- "Cases per 100K": "6633"
- },
- {
- "Date": "06-01-2021",
- "Sex": "Male",
- "Cases per 100K": "10600"
- },
- {
- "Date": "07-01-2021",
- "Sex": "Male",
- "Cases per 100K": "11300"
- },
- {
- "Date": "08-01-2021",
- "Sex": "Male",
- "Cases per 100K": "12450"
- },
- {
- "Date": "09-01-2021",
- "Sex": "Male",
- "Cases per 100K": "14625"
- },
- {
- "Date": "10-01-2021",
- "Sex": "Male",
- "Cases per 100K": "18238"
- },
- {
- "Date": "11-01-2021",
- "Sex": "Male",
- "Cases per 100K": "18214"
- },
- {
- "Date": "12-01-2021",
- "Sex": "Male",
- "Cases per 100K": "16411"
- },
- {
- "Date": "01-01-2022",
- "Sex": "Male",
- "Cases per 100K": "15808"
- },
- {
- "Date": "02-01-2022",
- "Sex": "Male",
- "Cases per 100K": "11210"
- },
- {
- "Date": "03-01-2022",
- "Sex": "Male",
- "Cases per 100K": "9660"
- },
- {
- "Date": "04-01-2022",
- "Sex": "Male",
- "Cases per 100K": "7325"
- },
- {
- "Date": "01-01-2021",
- "Sex": "Female",
- "Cases per 100K": "5714"
- },
- {
- "Date": "02-01-2021",
- "Sex": "Female",
- "Cases per 100K": "6000"
- },
- {
- "Date": "03-01-2021",
- "Sex": "Female",
- "Cases per 100K": "5808"
- },
- {
- "Date": "04-01-2021",
- "Sex": "Female",
- "Cases per 100K": "6225"
- },
- {
- "Date": "05-01-2021",
- "Sex": "Female",
- "Cases per 100K": "5633"
- },
- {
- "Date": "06-01-2021",
- "Sex": "Female",
- "Cases per 100K": "8600"
- },
- {
- "Date": "07-01-2021",
- "Sex": "Female",
- "Cases per 100K": "9300"
- },
- {
- "Date": "08-01-2021",
- "Sex": "Female",
- "Cases per 100K": "9450"
- },
- {
- "Date": "09-01-2021",
- "Sex": "Female",
- "Cases per 100K": "3625"
- },
- {
- "Date": "10-01-2021",
- "Sex": "Female",
- "Cases per 100K": "3238"
- },
- {
- "Date": "11-01-2021",
- "Sex": "Female",
- "Cases per 100K": "2214"
- },
- {
- "Date": "12-01-2021",
- "Sex": "Female",
- "Cases per 100K": "2411"
- },
- {
- "Date": "01-01-2022",
- "Sex": "Female",
- "Cases per 100K": "2808"
- },
- {
- "Date": "02-01-2022",
- "Sex": "Female",
- "Cases per 100K": "3210"
- },
- {
- "Date": "03-01-2022",
- "Sex": "Female",
- "Cases per 100K": "2660"
- },
- {
- "Date": "04-01-2022",
- "Sex": "Female",
- "Cases per 100K": "2325"
- }
-]
diff --git a/packages/chart/examples/feature/tests-non-numerics/planet-example-data-nonnumeric.json b/packages/chart/examples/feature/tests-non-numerics/__data__/planet-example-data-nonnumeric.json
similarity index 100%
rename from packages/chart/examples/feature/tests-non-numerics/planet-example-data-nonnumeric.json
rename to packages/chart/examples/feature/tests-non-numerics/__data__/planet-example-data-nonnumeric.json
diff --git a/packages/chart/examples/feature/tests-non-numerics/planet-pie-example-config-nonnumeric.json b/packages/chart/examples/feature/tests-non-numerics/planet-pie-example-config-nonnumeric.json
index 6bb31ab696..07dde2b37c 100644
--- a/packages/chart/examples/feature/tests-non-numerics/planet-pie-example-config-nonnumeric.json
+++ b/packages/chart/examples/feature/tests-non-numerics/planet-pie-example-config-nonnumeric.json
@@ -1,6 +1,6 @@
{
"title": "Planet Radius (Pie Example)",
- "dataUrl": "/examples/feature/tests-non-numerics/planet-example-data-nonnumeric.json",
+ "dataUrl": "/examples/feature/tests-non-numerics/__data__/planet-example-data-nonnumeric.json",
"animate": true,
"animateReplay": true,
"visualizationType": "Pie",
@@ -27,4 +27,4 @@
"label": "Data Table",
"expanded": false
}
-}
\ No newline at end of file
+}
diff --git a/packages/chart/examples/metadata-variables.json b/packages/chart/examples/metadata-variables.json
index 06edf1b2a9..fbb101759b 100644
--- a/packages/chart/examples/metadata-variables.json
+++ b/packages/chart/examples/metadata-variables.json
@@ -6,7 +6,7 @@
"visualizationType": "Bar",
"visualizationSubType": "regular",
"orientation": "vertical",
- "dataUrl": "/examples/data/data-with-metadata.json",
+ "dataUrl": "/examples/__data__/data-with-metadata.json",
"enableMarkupVariables": true,
"markupVariables": [
{
diff --git a/packages/chart/examples/region-issue.json b/packages/chart/examples/region-issue.json
deleted file mode 100644
index 7cd415fa3a..0000000000
--- a/packages/chart/examples/region-issue.json
+++ /dev/null
@@ -1,2065 +0,0 @@
-{
- "type": "chart",
- "debugSvg": false,
- "chartMessage": {
- "noData": "No Data Available"
- },
- "title": "",
- "showTitle": true,
- "showDownloadMediaButton": false,
- "theme": "theme-blue",
- "animate": false,
- "fontSize": "small",
- "lineDatapointStyle": "hover",
- "lineDatapointColor": "Same as Line",
- "barHasBorder": "false",
- "isLollipopChart": false,
- "lollipopShape": "circle",
- "lollipopColorStyle": "two-tone",
- "visualizationSubType": "regular",
- "barStyle": "",
- "roundingStyle": "standard",
- "tipRounding": "top",
- "isResponsiveTicks": false,
- "general": {
- "showDownloadButton": false
- },
- "padding": {
- "left": 5,
- "right": 5
- },
- "suppressedData": [],
- "preliminaryData": [],
- "yAxis": {
- "hideAxis": false,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": "55",
- "gridLines": true,
- "enablePadding": true,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": true,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "",
- "axisPadding": 0,
- "scalePadding": 10,
- "tickRotation": "",
- "anchors": [],
- "label": "Percent of Tests Positive"
- },
- "boxplot": {
- "plots": [],
- "borders": "true",
- "firstQuartilePercentage": 25,
- "thirdQuartilePercentage": 75,
- "boxWidthPercentage": 40,
- "plotOutlierValues": false,
- "plotNonOutlierValues": true,
- "legend": {
- "showHowToReadText": false,
- "howToReadText": ""
- },
- "labels": {
- "q1": "Lower Quartile",
- "q2": "q2",
- "q3": "Upper Quartile",
- "q4": "q4",
- "minimum": "Minimum",
- "maximum": "Maximum",
- "mean": "Mean",
- "median": "Median",
- "sd": "Standard Deviation",
- "iqr": "Interquartile Range",
- "total": "Total",
- "outliers": "Outliers",
- "values": "Values",
- "lowerBounds": "Lower Bounds",
- "upperBounds": "Upper Bounds"
- }
- },
- "topAxis": {
- "hasLine": false
- },
- "isLegendValue": false,
- "barThickness": 0.35,
- "barHeight": 25,
- "barSpace": 15,
- "heights": {
- "vertical": "350",
- "horizontal": 750
- },
- "xAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "date",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": "110",
- "tickRotation": "45",
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "12",
- "labelOffset": 65,
- "axisPadding": 0,
- "target": 0,
- "maxTickRotation": 0,
- "dataKey": "",
- "label": "Week Ending",
- "dateParseFormat": "%Y-%m-%d",
- "dateDisplayFormat": "%m/%d/%Y",
- "tickWidthMax": 81,
- "padding": 6
- },
- "table": {
- "label": "Data Table",
- "expanded": false,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "indexLabel": "Week Ending",
- "download": false,
- "showVertical": true,
- "dateDisplayFormat": "",
- "show": true
- },
- "orientation": "vertical",
- "color": "pinkpurple",
- "columns": {},
- "legend": {
- "hide": false,
- "behavior": "isolate",
- "axisAlign": true,
- "singleRow": true,
- "colorCode": "",
- "reverseLabelOrder": false,
- "description": "",
- "dynamicLegend": false,
- "dynamicLegendDefaultText": "Show All",
- "dynamicLegendItemLimit": 5,
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
- "dynamicLegendChartMessage": "Select Options from the Legend",
- "lineMode": false,
- "verticalSorted": false,
- "highlightOnHover": false,
- "seriesHighlight": [],
- "showLegendValuesTooltip": false,
- "position": "bottom"
- },
- "brush": {
- "height": 25,
- "data": [
- {
- "week_end": "2022-10-01",
- "**Numeric Value Property**": "",
- "COVID-19": "6.9",
- "Influenza": "2.0",
- "RSV": "10.2"
- },
- {
- "week_end": "2022-10-08",
- "**Numeric Value Property**": "",
- "COVID-19": "6.9",
- "Influenza": "2.7",
- "RSV": "12.5"
- },
- {
- "week_end": "2022-10-15",
- "**Numeric Value Property**": "",
- "COVID-19": "7.1",
- "Influenza": "3.5",
- "RSV": "14.6"
- },
- {
- "week_end": "2022-10-22",
- "**Numeric Value Property**": "",
- "COVID-19": "6.8",
- "Influenza": "5.4",
- "RSV": "16.5"
- },
- {
- "week_end": "2022-10-29",
- "**Numeric Value Property**": "",
- "COVID-19": "6.9",
- "Influenza": "8.4",
- "RSV": "18.3"
- },
- {
- "week_end": "2022-11-05",
- "**Numeric Value Property**": "",
- "COVID-19": "6.5",
- "Influenza": "12.8",
- "RSV": "19.1"
- },
- {
- "week_end": "2022-11-12",
- "**Numeric Value Property**": "",
- "COVID-19": "6.8",
- "Influenza": "14.9",
- "RSV": "19.5"
- },
- {
- "week_end": "2022-11-19",
- "**Numeric Value Property**": "",
- "COVID-19": "6.7",
- "Influenza": "18.3",
- "RSV": "16.7"
- },
- {
- "week_end": "2022-11-26",
- "**Numeric Value Property**": "",
- "COVID-19": "7.6",
- "Influenza": "25.8",
- "RSV": "13.4"
- },
- {
- "week_end": "2022-12-03",
- "**Numeric Value Property**": "",
- "COVID-19": "8.6",
- "Influenza": "25.6",
- "RSV": "10.5"
- },
- {
- "week_end": "2022-12-10",
- "**Numeric Value Property**": "",
- "COVID-19": "8.7",
- "Influenza": "26.3",
- "RSV": "7.9"
- },
- {
- "week_end": "2022-12-17",
- "**Numeric Value Property**": "",
- "COVID-19": "9.4",
- "Influenza": "24.5",
- "RSV": "6.7"
- },
- {
- "week_end": "2022-12-24",
- "**Numeric Value Property**": "",
- "COVID-19": "9.8",
- "Influenza": "20.8",
- "RSV": "5.6"
- },
- {
- "week_end": "2022-12-31",
- "**Numeric Value Property**": "",
- "COVID-19": "10.6",
- "Influenza": "14.9",
- "RSV": "5.1"
- },
- {
- "week_end": "2023-01-07",
- "**Numeric Value Property**": "",
- "COVID-19": "10.3",
- "Influenza": "8.6",
- "RSV": "4.9"
- },
- {
- "week_end": "2023-01-14",
- "**Numeric Value Property**": "",
- "COVID-19": "8.8",
- "Influenza": "4.6",
- "RSV": "4.0"
- },
- {
- "week_end": "2023-01-21",
- "**Numeric Value Property**": "",
- "COVID-19": "8.5",
- "Influenza": "2.9",
- "RSV": "3.3"
- },
- {
- "week_end": "2023-01-28",
- "**Numeric Value Property**": "",
- "COVID-19": "8.3",
- "Influenza": "2.1",
- "RSV": "2.5"
- },
- {
- "week_end": "2023-02-04",
- "**Numeric Value Property**": "",
- "COVID-19": "8.0",
- "Influenza": "1.7",
- "RSV": "2.2"
- },
- {
- "week_end": "2023-02-11",
- "**Numeric Value Property**": "",
- "COVID-19": "8.0",
- "Influenza": "1.4",
- "RSV": "1.8"
- },
- {
- "week_end": "2023-02-18",
- "**Numeric Value Property**": "",
- "COVID-19": "8.1",
- "Influenza": "1.1",
- "RSV": "1.6"
- },
- {
- "week_end": "2023-02-25",
- "**Numeric Value Property**": "",
- "COVID-19": "7.9",
- "Influenza": "1.0",
- "RSV": "1.4"
- },
- {
- "week_end": "2023-03-04",
- "**Numeric Value Property**": "",
- "COVID-19": "7.4",
- "Influenza": "0.9",
- "RSV": "1.2"
- },
- {
- "week_end": "2023-03-11",
- "**Numeric Value Property**": "",
- "COVID-19": "6.8",
- "Influenza": "1.0",
- "RSV": "1.1"
- },
- {
- "week_end": "2023-03-18",
- "**Numeric Value Property**": "",
- "COVID-19": "6.8",
- "Influenza": "0.9",
- "RSV": "0.9"
- },
- {
- "week_end": "2023-03-25",
- "**Numeric Value Property**": "",
- "COVID-19": "6.9",
- "Influenza": "0.9",
- "RSV": "0.8"
- },
- {
- "week_end": "2023-04-01",
- "**Numeric Value Property**": "",
- "COVID-19": "6.5",
- "Influenza": "1.0",
- "RSV": "0.7"
- },
- {
- "week_end": "2023-04-08",
- "**Numeric Value Property**": "",
- "COVID-19": "6.2",
- "Influenza": "1.1",
- "RSV": "0.6"
- },
- {
- "week_end": "2023-04-15",
- "**Numeric Value Property**": "",
- "COVID-19": "5.7",
- "Influenza": "1.0",
- "RSV": "0.6"
- },
- {
- "week_end": "2023-04-22",
- "**Numeric Value Property**": "",
- "COVID-19": "5.0",
- "Influenza": "0.8",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-04-29",
- "**Numeric Value Property**": "",
- "COVID-19": "4.9",
- "Influenza": "1.0",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-05-06",
- "**Numeric Value Property**": "",
- "COVID-19": "5.0",
- "Influenza": "0.9",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-05-13",
- "**Numeric Value Property**": "",
- "COVID-19": "4.8",
- "Influenza": "1.0",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-05-20",
- "**Numeric Value Property**": "",
- "COVID-19": "4.6",
- "Influenza": "1.2",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-05-27",
- "**Numeric Value Property**": "",
- "COVID-19": "4.6",
- "Influenza": "1.2",
- "RSV": "0.4"
- },
- {
- "week_end": "2023-06-03",
- "**Numeric Value Property**": "",
- "COVID-19": "4.2",
- "Influenza": "1.3",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-06-10",
- "**Numeric Value Property**": "",
- "COVID-19": "4.1",
- "Influenza": "1.1",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-06-17",
- "**Numeric Value Property**": "",
- "COVID-19": "4.3",
- "Influenza": "1.1",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-06-24",
- "**Numeric Value Property**": "",
- "COVID-19": "4.4",
- "Influenza": "0.9",
- "RSV": "0.6"
- },
- {
- "week_end": "2023-07-01",
- "**Numeric Value Property**": "",
- "COVID-19": "4.9",
- "Influenza": "1.1",
- "RSV": "0.6"
- },
- {
- "week_end": "2023-07-08",
- "**Numeric Value Property**": "",
- "COVID-19": "5.9",
- "Influenza": "1.2",
- "RSV": "0.5"
- },
- {
- "week_end": "2023-07-15",
- "**Numeric Value Property**": "",
- "COVID-19": "6.6",
- "Influenza": "1.0",
- "RSV": "0.6"
- },
- {
- "week_end": "2023-07-22",
- "**Numeric Value Property**": "",
- "COVID-19": "7.5",
- "Influenza": "1.0",
- "RSV": "0.8"
- },
- {
- "week_end": "2023-07-29",
- "**Numeric Value Property**": "",
- "COVID-19": "9.0",
- "Influenza": "1.0",
- "RSV": "0.8"
- },
- {
- "week_end": "2023-08-05",
- "**Numeric Value Property**": "",
- "COVID-19": "10.6",
- "Influenza": "1.1",
- "RSV": "0.9"
- },
- {
- "week_end": "2023-08-12",
- "**Numeric Value Property**": "",
- "COVID-19": "12.4",
- "Influenza": "0.9",
- "RSV": "0.8"
- },
- {
- "week_end": "2023-08-19",
- "**Numeric Value Property**": "",
- "COVID-19": "13.4",
- "Influenza": "0.9",
- "RSV": "0.8"
- },
- {
- "week_end": "2023-08-26",
- "**Numeric Value Property**": "",
- "COVID-19": "14.6",
- "Influenza": "0.8",
- "RSV": "1.2"
- },
- {
- "week_end": "2023-09-02",
- "**Numeric Value Property**": "",
- "COVID-19": "14.1",
- "Influenza": "0.7",
- "RSV": "1.1"
- },
- {
- "week_end": "2023-09-09",
- "**Numeric Value Property**": "",
- "COVID-19": "13.9",
- "Influenza": "0.7",
- "RSV": "1.3"
- },
- {
- "week_end": "2023-09-16",
- "**Numeric Value Property**": "",
- "COVID-19": "12.7",
- "Influenza": "0.8",
- "RSV": "1.4"
- },
- {
- "week_end": "2023-09-23",
- "**Numeric Value Property**": "",
- "COVID-19": "12.0",
- "Influenza": "0.9",
- "RSV": "2.1"
- },
- {
- "week_end": "2023-09-30",
- "**Numeric Value Property**": "",
- "COVID-19": "10.9",
- "Influenza": "0.9",
- "RSV": "2.9"
- },
- {
- "week_end": "2023-10-07",
- "**Numeric Value Property**": "",
- "COVID-19": "10.0",
- "Influenza": "1.1",
- "RSV": "3.7"
- },
- {
- "week_end": "2023-10-14",
- "**Numeric Value Property**": "",
- "COVID-19": "9.1",
- "Influenza": "1.3",
- "RSV": "4.8"
- },
- {
- "week_end": "2023-10-21",
- "**Numeric Value Property**": "",
- "COVID-19": "9.4",
- "Influenza": "1.5",
- "RSV": "6.0"
- },
- {
- "week_end": "2023-10-28",
- "**Numeric Value Property**": "",
- "COVID-19": "9.6",
- "Influenza": "1.8",
- "RSV": "7.7"
- },
- {
- "week_end": "2023-11-04",
- "**Numeric Value Property**": "",
- "COVID-19": "9.3",
- "Influenza": "2.6",
- "RSV": "9.2"
- },
- {
- "week_end": "2023-11-11",
- "**Numeric Value Property**": "",
- "COVID-19": "10.0",
- "Influenza": "4.0",
- "RSV": "10.7"
- },
- {
- "week_end": "2023-11-18",
- "**Numeric Value Property**": "",
- "COVID-19": "9.5",
- "Influenza": "4.9",
- "RSV": "11.9"
- },
- {
- "week_end": "2023-11-25",
- "**Numeric Value Property**": "",
- "COVID-19": "11.2",
- "Influenza": "6.0",
- "RSV": "12.9"
- },
- {
- "week_end": "2023-12-02",
- "**Numeric Value Property**": "",
- "COVID-19": "11.7",
- "Influenza": "7.0",
- "RSV": "12.0"
- },
- {
- "week_end": "2023-12-09",
- "**Numeric Value Property**": "",
- "COVID-19": "11.6",
- "Influenza": "8.5",
- "RSV": "12.1"
- },
- {
- "week_end": "2023-12-16",
- "**Numeric Value Property**": "",
- "COVID-19": "11.9",
- "Influenza": "13.5",
- "RSV": "12.2"
- },
- {
- "week_end": "2023-12-23",
- "**Numeric Value Property**": "",
- "COVID-19": "12.4",
- "Influenza": "17.4",
- "RSV": "11.3"
- },
- {
- "week_end": "2023-12-30",
- "**Numeric Value Property**": "",
- "COVID-19": "13.1",
- "Influenza": "18.3",
- "RSV": "10.5"
- },
- {
- "week_end": "2024-01-06",
- "**Numeric Value Property**": "",
- "COVID-19": "12.9",
- "Influenza": "13.8",
- "RSV": "9.9"
- },
- {
- "week_end": "2024-01-13",
- "**Numeric Value Property**": "",
- "COVID-19": "11.9",
- "Influenza": "14.0",
- "RSV": "8.4"
- },
- {
- "week_end": "2024-01-20",
- "**Numeric Value Property**": "",
- "COVID-19": "10.9",
- "Influenza": "15.0",
- "RSV": "7.3"
- },
- {
- "week_end": "2024-01-27",
- "**Numeric Value Property**": "",
- "COVID-19": "10.5",
- "Influenza": "16.2",
- "RSV": "6.1"
- },
- {
- "week_end": "2024-02-03",
- "**Numeric Value Property**": "",
- "COVID-19": "10.0",
- "Influenza": "16.5",
- "RSV": "5.5"
- },
- {
- "week_end": "2024-02-10",
- "**Numeric Value Property**": "",
- "COVID-19": "9.5",
- "Influenza": "15.9",
- "RSV": "5.0"
- },
- {
- "week_end": "2024-02-17",
- "**Numeric Value Property**": "",
- "COVID-19": "8.3",
- "Influenza": "15.6",
- "RSV": "4.3"
- },
- {
- "week_end": "2024-02-24",
- "**Numeric Value Property**": "",
- "COVID-19": "7.7",
- "Influenza": "15.6",
- "RSV": "3.7"
- },
- {
- "week_end": "2024-03-02",
- "**Numeric Value Property**": "",
- "COVID-19": "6.7",
- "Influenza": "15.0",
- "RSV": "3.1"
- },
- {
- "week_end": "2024-03-09",
- "**Numeric Value Property**": "",
- "COVID-19": "5.5",
- "Influenza": "14.2",
- "RSV": "2.8"
- },
- {
- "week_end": "2024-03-16",
- "**Numeric Value Property**": "",
- "COVID-19": "4.6",
- "Influenza": "12.0",
- "RSV": "2.3"
- },
- {
- "week_end": "2024-03-23",
- "**Numeric Value Property**": "",
- "COVID-19": "4.0",
- "RSV": "1.9"
- }
- ],
- "active": false,
- "pattern_id": "brush_pattern",
- "accent_color": "#ddd"
- },
- "exclusions": {
- "active": false,
- "keys": []
- },
- "palette": "qualitative-bold",
- "isPaletteReversed": false,
- "twoColor": {
- "palette": "monochrome-1",
- "isPaletteReversed": false
- },
- "labels": false,
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": "%",
- "abbreviated": true,
- "bottomSuffix": "",
- "bottomPrefix": "",
- "bottomAbbreviated": false,
- "roundTo": "1"
- },
- "confidenceKeys": {},
- "visual": {
- "border": true,
- "accent": true,
- "background": true,
- "verticalHoverLine": true,
- "horizontalHoverLine": false
- },
- "useLogScale": false,
- "filterBehavior": "Filter Change",
- "highlightedBarValues": [],
- "series": [
- {
- "dataKey": "RSV",
- "type": "Line",
- "axis": "Left",
- "tooltip": true
- }
- ],
- "tooltips": {
- "opacity": 90,
- "singleSeries": false,
- "dateDisplayFormat": ""
- },
- "forestPlot": {
- "startAt": 0,
- "colors": {
- "line": "",
- "shape": ""
- },
- "lineOfNoEffect": {
- "show": true
- },
- "type": "",
- "pooledResult": {
- "diamondHeight": 5,
- "column": ""
- },
- "estimateField": "",
- "estimateRadius": "",
- "shape": "",
- "rowHeight": 20,
- "description": {
- "show": true,
- "text": "description",
- "location": 0
- },
- "result": {
- "show": true,
- "text": "result",
- "location": 100
- },
- "radius": {
- "min": 1,
- "max": 8,
- "scalingColumn": ""
- },
- "regression": {
- "lower": 0,
- "upper": 0,
- "estimateField": 0
- },
- "leftWidthOffset": 0,
- "rightWidthOffset": 0,
- "showZeroLine": false,
- "leftLabel": "",
- "rightLabel": "",
- "hideDateCategoryCol": false,
- "width": "auto",
- "lowerCiField": "",
- "upperCiField": ""
- },
- "area": {
- "isStacked": false
- },
- "sankey": {
- "title": {
- "defaultColor": "black"
- },
- "iterations": 1,
- "rxValue": 0.9,
- "overallSize": {
- "width": 900,
- "height": 700
- },
- "margin": {
- "margin_y": 25,
- "margin_x": 0
- },
- "nodeSize": {
- "nodeWidth": 26,
- "nodeHeight": 40
- },
- "nodePadding": 55,
- "nodeFontColor": "black",
- "nodeColor": {
- "default": "#ff8500",
- "inactive": "#808080"
- },
- "linkColor": {
- "default": "#ffc900",
- "inactive": "#D3D3D3"
- },
- "opacity": {
- "nodeOpacityDefault": 1,
- "nodeOpacityInactive": 0.1,
- "LinkOpacityDefault": 1,
- "LinkOpacityInactive": 0.1
- },
- "storyNodeFontColor": "#006778",
- "storyNodeText": [],
- "nodeValueStyle": {
- "textBefore": "(",
- "textAfter": ")"
- },
- "data": []
- },
- "data": [
- {
- "week_end": "2022-10-01",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.9"
- },
- {
- "week_end": "2022-10-01",
- "pathogen": "Influenza",
- "percent_test_positivity": "2.0"
- },
- {
- "week_end": "2022-10-01",
- "pathogen": "RSV",
- "percent_test_positivity": "10.2"
- },
- {
- "week_end": "2022-10-08",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.9"
- },
- {
- "week_end": "2022-10-08",
- "pathogen": "Influenza",
- "percent_test_positivity": "2.7"
- },
- {
- "week_end": "2022-10-08",
- "pathogen": "RSV",
- "percent_test_positivity": "12.5"
- },
- {
- "week_end": "2022-10-15",
- "pathogen": "COVID-19",
- "percent_test_positivity": "7.1"
- },
- {
- "week_end": "2022-10-15",
- "pathogen": "Influenza",
- "percent_test_positivity": "3.5"
- },
- {
- "week_end": "2022-10-15",
- "pathogen": "RSV",
- "percent_test_positivity": "14.6"
- },
- {
- "week_end": "2022-10-22",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.8"
- },
- {
- "week_end": "2022-10-22",
- "pathogen": "Influenza",
- "percent_test_positivity": "5.4"
- },
- {
- "week_end": "2022-10-22",
- "pathogen": "RSV",
- "percent_test_positivity": "16.5"
- },
- {
- "week_end": "2022-10-29",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.9"
- },
- {
- "week_end": "2022-10-29",
- "pathogen": "Influenza",
- "percent_test_positivity": "8.4"
- },
- {
- "week_end": "2022-10-29",
- "pathogen": "RSV",
- "percent_test_positivity": "18.3"
- },
- {
- "week_end": "2022-11-05",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.5"
- },
- {
- "week_end": "2022-11-05",
- "pathogen": "Influenza",
- "percent_test_positivity": "12.8"
- },
- {
- "week_end": "2022-11-05",
- "pathogen": "RSV",
- "percent_test_positivity": "19.1"
- },
- {
- "week_end": "2022-11-12",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.8"
- },
- {
- "week_end": "2022-11-12",
- "pathogen": "Influenza",
- "percent_test_positivity": "14.9"
- },
- {
- "week_end": "2022-11-12",
- "pathogen": "RSV",
- "percent_test_positivity": "19.5"
- },
- {
- "week_end": "2022-11-19",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.7"
- },
- {
- "week_end": "2022-11-19",
- "pathogen": "Influenza",
- "percent_test_positivity": "18.3"
- },
- {
- "week_end": "2022-11-19",
- "pathogen": "RSV",
- "percent_test_positivity": "16.7"
- },
- {
- "week_end": "2022-11-26",
- "pathogen": "COVID-19",
- "percent_test_positivity": "7.6"
- },
- {
- "week_end": "2022-11-26",
- "pathogen": "Influenza",
- "percent_test_positivity": "25.8"
- },
- {
- "week_end": "2022-11-26",
- "pathogen": "RSV",
- "percent_test_positivity": "13.4"
- },
- {
- "week_end": "2022-12-03",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.6"
- },
- {
- "week_end": "2022-12-03",
- "pathogen": "Influenza",
- "percent_test_positivity": "25.6"
- },
- {
- "week_end": "2022-12-03",
- "pathogen": "RSV",
- "percent_test_positivity": "10.5"
- },
- {
- "week_end": "2022-12-10",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.7"
- },
- {
- "week_end": "2022-12-10",
- "pathogen": "Influenza",
- "percent_test_positivity": "26.3"
- },
- {
- "week_end": "2022-12-10",
- "pathogen": "RSV",
- "percent_test_positivity": "7.9"
- },
- {
- "week_end": "2022-12-17",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.4"
- },
- {
- "week_end": "2022-12-17",
- "pathogen": "Influenza",
- "percent_test_positivity": "24.5"
- },
- {
- "week_end": "2022-12-17",
- "pathogen": "RSV",
- "percent_test_positivity": "6.7"
- },
- {
- "week_end": "2022-12-24",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.8"
- },
- {
- "week_end": "2022-12-24",
- "pathogen": "Influenza",
- "percent_test_positivity": "20.8"
- },
- {
- "week_end": "2022-12-24",
- "pathogen": "RSV",
- "percent_test_positivity": "5.6"
- },
- {
- "week_end": "2022-12-31",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.6"
- },
- {
- "week_end": "2022-12-31",
- "pathogen": "Influenza",
- "percent_test_positivity": "14.9"
- },
- {
- "week_end": "2022-12-31",
- "pathogen": "RSV",
- "percent_test_positivity": "5.1"
- },
- {
- "week_end": "2023-01-07",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.3"
- },
- {
- "week_end": "2023-01-07",
- "pathogen": "Influenza",
- "percent_test_positivity": "8.6"
- },
- {
- "week_end": "2023-01-07",
- "pathogen": "RSV",
- "percent_test_positivity": "4.9"
- },
- {
- "week_end": "2023-01-14",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.8"
- },
- {
- "week_end": "2023-01-14",
- "pathogen": "Influenza",
- "percent_test_positivity": "4.6"
- },
- {
- "week_end": "2023-01-14",
- "pathogen": "RSV",
- "percent_test_positivity": "4.0"
- },
- {
- "week_end": "2023-01-21",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.5"
- },
- {
- "week_end": "2023-01-21",
- "pathogen": "Influenza",
- "percent_test_positivity": "2.9"
- },
- {
- "week_end": "2023-01-21",
- "pathogen": "RSV",
- "percent_test_positivity": "3.3"
- },
- {
- "week_end": "2023-01-28",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.3"
- },
- {
- "week_end": "2023-01-28",
- "pathogen": "Influenza",
- "percent_test_positivity": "2.1"
- },
- {
- "week_end": "2023-01-28",
- "pathogen": "RSV",
- "percent_test_positivity": "2.5"
- },
- {
- "week_end": "2023-02-04",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.0"
- },
- {
- "week_end": "2023-02-04",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.7"
- },
- {
- "week_end": "2023-02-04",
- "pathogen": "RSV",
- "percent_test_positivity": "2.2"
- },
- {
- "week_end": "2023-02-11",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.0"
- },
- {
- "week_end": "2023-02-11",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.4"
- },
- {
- "week_end": "2023-02-11",
- "pathogen": "RSV",
- "percent_test_positivity": "1.8"
- },
- {
- "week_end": "2023-02-18",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.1"
- },
- {
- "week_end": "2023-02-18",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-02-18",
- "pathogen": "RSV",
- "percent_test_positivity": "1.6"
- },
- {
- "week_end": "2023-02-25",
- "pathogen": "COVID-19",
- "percent_test_positivity": "7.9"
- },
- {
- "week_end": "2023-02-25",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-02-25",
- "pathogen": "RSV",
- "percent_test_positivity": "1.4"
- },
- {
- "week_end": "2023-03-04",
- "pathogen": "COVID-19",
- "percent_test_positivity": "7.4"
- },
- {
- "week_end": "2023-03-04",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-03-04",
- "pathogen": "RSV",
- "percent_test_positivity": "1.2"
- },
- {
- "week_end": "2023-03-11",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.8"
- },
- {
- "week_end": "2023-03-11",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-03-11",
- "pathogen": "RSV",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-03-18",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.8"
- },
- {
- "week_end": "2023-03-18",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-03-18",
- "pathogen": "RSV",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-03-25",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.9"
- },
- {
- "week_end": "2023-03-25",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-03-25",
- "pathogen": "RSV",
- "percent_test_positivity": "0.8"
- },
- {
- "week_end": "2023-04-01",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.5"
- },
- {
- "week_end": "2023-04-01",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-04-01",
- "pathogen": "RSV",
- "percent_test_positivity": "0.7"
- },
- {
- "week_end": "2023-04-08",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.2"
- },
- {
- "week_end": "2023-04-08",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-04-08",
- "pathogen": "RSV",
- "percent_test_positivity": "0.6"
- },
- {
- "week_end": "2023-04-15",
- "pathogen": "COVID-19",
- "percent_test_positivity": "5.7"
- },
- {
- "week_end": "2023-04-15",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-04-15",
- "pathogen": "RSV",
- "percent_test_positivity": "0.6"
- },
- {
- "week_end": "2023-04-22",
- "pathogen": "COVID-19",
- "percent_test_positivity": "5.0"
- },
- {
- "week_end": "2023-04-22",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.8"
- },
- {
- "week_end": "2023-04-22",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-04-29",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.9"
- },
- {
- "week_end": "2023-04-29",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-04-29",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-05-06",
- "pathogen": "COVID-19",
- "percent_test_positivity": "5.0"
- },
- {
- "week_end": "2023-05-06",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-05-06",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-05-13",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.8"
- },
- {
- "week_end": "2023-05-13",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-05-13",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-05-20",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.6"
- },
- {
- "week_end": "2023-05-20",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.2"
- },
- {
- "week_end": "2023-05-20",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-05-27",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.6"
- },
- {
- "week_end": "2023-05-27",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.2"
- },
- {
- "week_end": "2023-05-27",
- "pathogen": "RSV",
- "percent_test_positivity": "0.4"
- },
- {
- "week_end": "2023-06-03",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.2"
- },
- {
- "week_end": "2023-06-03",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.3"
- },
- {
- "week_end": "2023-06-03",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-06-10",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.1"
- },
- {
- "week_end": "2023-06-10",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-06-10",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-06-17",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.3"
- },
- {
- "week_end": "2023-06-17",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-06-17",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-06-24",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.4"
- },
- {
- "week_end": "2023-06-24",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-06-24",
- "pathogen": "RSV",
- "percent_test_positivity": "0.6"
- },
- {
- "week_end": "2023-07-01",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.9"
- },
- {
- "week_end": "2023-07-01",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-07-01",
- "pathogen": "RSV",
- "percent_test_positivity": "0.6"
- },
- {
- "week_end": "2023-07-08",
- "pathogen": "COVID-19",
- "percent_test_positivity": "5.9"
- },
- {
- "week_end": "2023-07-08",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.2"
- },
- {
- "week_end": "2023-07-08",
- "pathogen": "RSV",
- "percent_test_positivity": "0.5"
- },
- {
- "week_end": "2023-07-15",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.6"
- },
- {
- "week_end": "2023-07-15",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-07-15",
- "pathogen": "RSV",
- "percent_test_positivity": "0.6"
- },
- {
- "week_end": "2023-07-22",
- "pathogen": "COVID-19",
- "percent_test_positivity": "7.5"
- },
- {
- "week_end": "2023-07-22",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-07-22",
- "pathogen": "RSV",
- "percent_test_positivity": "0.8"
- },
- {
- "week_end": "2023-07-29",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.0"
- },
- {
- "week_end": "2023-07-29",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.0"
- },
- {
- "week_end": "2023-07-29",
- "pathogen": "RSV",
- "percent_test_positivity": "0.8"
- },
- {
- "week_end": "2023-08-05",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.6"
- },
- {
- "week_end": "2023-08-05",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-08-05",
- "pathogen": "RSV",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-08-12",
- "pathogen": "COVID-19",
- "percent_test_positivity": "12.4"
- },
- {
- "week_end": "2023-08-12",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-08-12",
- "pathogen": "RSV",
- "percent_test_positivity": "0.8"
- },
- {
- "week_end": "2023-08-19",
- "pathogen": "COVID-19",
- "percent_test_positivity": "13.4"
- },
- {
- "week_end": "2023-08-19",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-08-19",
- "pathogen": "RSV",
- "percent_test_positivity": "0.8"
- },
- {
- "week_end": "2023-08-26",
- "pathogen": "COVID-19",
- "percent_test_positivity": "14.6"
- },
- {
- "week_end": "2023-08-26",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.8"
- },
- {
- "week_end": "2023-08-26",
- "pathogen": "RSV",
- "percent_test_positivity": "1.2"
- },
- {
- "week_end": "2023-09-02",
- "pathogen": "COVID-19",
- "percent_test_positivity": "14.1"
- },
- {
- "week_end": "2023-09-02",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.7"
- },
- {
- "week_end": "2023-09-02",
- "pathogen": "RSV",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-09-09",
- "pathogen": "COVID-19",
- "percent_test_positivity": "13.9"
- },
- {
- "week_end": "2023-09-09",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.7"
- },
- {
- "week_end": "2023-09-09",
- "pathogen": "RSV",
- "percent_test_positivity": "1.3"
- },
- {
- "week_end": "2023-09-16",
- "pathogen": "COVID-19",
- "percent_test_positivity": "12.7"
- },
- {
- "week_end": "2023-09-16",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.8"
- },
- {
- "week_end": "2023-09-16",
- "pathogen": "RSV",
- "percent_test_positivity": "1.4"
- },
- {
- "week_end": "2023-09-23",
- "pathogen": "COVID-19",
- "percent_test_positivity": "12.0"
- },
- {
- "week_end": "2023-09-23",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-09-23",
- "pathogen": "RSV",
- "percent_test_positivity": "2.1"
- },
- {
- "week_end": "2023-09-30",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.9"
- },
- {
- "week_end": "2023-09-30",
- "pathogen": "Influenza",
- "percent_test_positivity": "0.9"
- },
- {
- "week_end": "2023-09-30",
- "pathogen": "RSV",
- "percent_test_positivity": "2.9"
- },
- {
- "week_end": "2023-10-07",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.0"
- },
- {
- "week_end": "2023-10-07",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.1"
- },
- {
- "week_end": "2023-10-07",
- "pathogen": "RSV",
- "percent_test_positivity": "3.7"
- },
- {
- "week_end": "2023-10-14",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.1"
- },
- {
- "week_end": "2023-10-14",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.3"
- },
- {
- "week_end": "2023-10-14",
- "pathogen": "RSV",
- "percent_test_positivity": "4.8"
- },
- {
- "week_end": "2023-10-21",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.4"
- },
- {
- "week_end": "2023-10-21",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.5"
- },
- {
- "week_end": "2023-10-21",
- "pathogen": "RSV",
- "percent_test_positivity": "6.0"
- },
- {
- "week_end": "2023-10-28",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.6"
- },
- {
- "week_end": "2023-10-28",
- "pathogen": "Influenza",
- "percent_test_positivity": "1.8"
- },
- {
- "week_end": "2023-10-28",
- "pathogen": "RSV",
- "percent_test_positivity": "7.7"
- },
- {
- "week_end": "2023-11-04",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.3"
- },
- {
- "week_end": "2023-11-04",
- "pathogen": "Influenza",
- "percent_test_positivity": "2.6"
- },
- {
- "week_end": "2023-11-04",
- "pathogen": "RSV",
- "percent_test_positivity": "9.2"
- },
- {
- "week_end": "2023-11-11",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.0"
- },
- {
- "week_end": "2023-11-11",
- "pathogen": "Influenza",
- "percent_test_positivity": "4.0"
- },
- {
- "week_end": "2023-11-11",
- "pathogen": "RSV",
- "percent_test_positivity": "10.7"
- },
- {
- "week_end": "2023-11-18",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.5"
- },
- {
- "week_end": "2023-11-18",
- "pathogen": "Influenza",
- "percent_test_positivity": "4.9"
- },
- {
- "week_end": "2023-11-18",
- "pathogen": "RSV",
- "percent_test_positivity": "11.9"
- },
- {
- "week_end": "2023-11-25",
- "pathogen": "COVID-19",
- "percent_test_positivity": "11.2"
- },
- {
- "week_end": "2023-11-25",
- "pathogen": "Influenza",
- "percent_test_positivity": "6.0"
- },
- {
- "week_end": "2023-11-25",
- "pathogen": "RSV",
- "percent_test_positivity": "12.9"
- },
- {
- "week_end": "2023-12-02",
- "pathogen": "COVID-19",
- "percent_test_positivity": "11.7"
- },
- {
- "week_end": "2023-12-02",
- "pathogen": "Influenza",
- "percent_test_positivity": "7.0"
- },
- {
- "week_end": "2023-12-02",
- "pathogen": "RSV",
- "percent_test_positivity": "12.0"
- },
- {
- "week_end": "2023-12-09",
- "pathogen": "COVID-19",
- "percent_test_positivity": "11.6"
- },
- {
- "week_end": "2023-12-09",
- "pathogen": "Influenza",
- "percent_test_positivity": "8.5"
- },
- {
- "week_end": "2023-12-09",
- "pathogen": "RSV",
- "percent_test_positivity": "12.1"
- },
- {
- "week_end": "2023-12-16",
- "pathogen": "COVID-19",
- "percent_test_positivity": "11.9"
- },
- {
- "week_end": "2023-12-16",
- "pathogen": "Influenza",
- "percent_test_positivity": "13.5"
- },
- {
- "week_end": "2023-12-16",
- "pathogen": "RSV",
- "percent_test_positivity": "12.2"
- },
- {
- "week_end": "2023-12-23",
- "pathogen": "COVID-19",
- "percent_test_positivity": "12.4"
- },
- {
- "week_end": "2023-12-23",
- "pathogen": "Influenza",
- "percent_test_positivity": "17.4"
- },
- {
- "week_end": "2023-12-23",
- "pathogen": "RSV",
- "percent_test_positivity": "11.3"
- },
- {
- "week_end": "2023-12-30",
- "pathogen": "COVID-19",
- "percent_test_positivity": "13.1"
- },
- {
- "week_end": "2023-12-30",
- "pathogen": "Influenza",
- "percent_test_positivity": "18.3"
- },
- {
- "week_end": "2023-12-30",
- "pathogen": "RSV",
- "percent_test_positivity": "10.5"
- },
- {
- "week_end": "2024-01-06",
- "pathogen": "COVID-19",
- "percent_test_positivity": "12.9"
- },
- {
- "week_end": "2024-01-06",
- "pathogen": "Influenza",
- "percent_test_positivity": "13.8"
- },
- {
- "week_end": "2024-01-06",
- "pathogen": "RSV",
- "percent_test_positivity": "9.9"
- },
- {
- "week_end": "2024-01-13",
- "pathogen": "COVID-19",
- "percent_test_positivity": "11.9"
- },
- {
- "week_end": "2024-01-13",
- "pathogen": "Influenza",
- "percent_test_positivity": "14.0"
- },
- {
- "week_end": "2024-01-13",
- "pathogen": "RSV",
- "percent_test_positivity": "8.4"
- },
- {
- "week_end": "2024-01-20",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.9"
- },
- {
- "week_end": "2024-01-20",
- "pathogen": "Influenza",
- "percent_test_positivity": "15.0"
- },
- {
- "week_end": "2024-01-20",
- "pathogen": "RSV",
- "percent_test_positivity": "7.3"
- },
- {
- "week_end": "2024-01-27",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.5"
- },
- {
- "week_end": "2024-01-27",
- "pathogen": "Influenza",
- "percent_test_positivity": "16.2"
- },
- {
- "week_end": "2024-01-27",
- "pathogen": "RSV",
- "percent_test_positivity": "6.1"
- },
- {
- "week_end": "2024-02-03",
- "pathogen": "COVID-19",
- "percent_test_positivity": "10.0"
- },
- {
- "week_end": "2024-02-03",
- "pathogen": "Influenza",
- "percent_test_positivity": "16.5"
- },
- {
- "week_end": "2024-02-03",
- "pathogen": "RSV",
- "percent_test_positivity": "5.5"
- },
- {
- "week_end": "2024-02-10",
- "pathogen": "COVID-19",
- "percent_test_positivity": "9.5"
- },
- {
- "week_end": "2024-02-10",
- "pathogen": "Influenza",
- "percent_test_positivity": "15.9"
- },
- {
- "week_end": "2024-02-10",
- "pathogen": "RSV",
- "percent_test_positivity": "5.0"
- },
- {
- "week_end": "2024-02-17",
- "pathogen": "COVID-19",
- "percent_test_positivity": "8.3"
- },
- {
- "week_end": "2024-02-17",
- "pathogen": "Influenza",
- "percent_test_positivity": "15.6"
- },
- {
- "week_end": "2024-02-17",
- "pathogen": "RSV",
- "percent_test_positivity": "4.3"
- },
- {
- "week_end": "2024-02-24",
- "pathogen": "COVID-19",
- "percent_test_positivity": "7.7"
- },
- {
- "week_end": "2024-02-24",
- "pathogen": "Influenza",
- "percent_test_positivity": "15.6"
- },
- {
- "week_end": "2024-02-24",
- "pathogen": "RSV",
- "percent_test_positivity": "3.7"
- },
- {
- "week_end": "2024-03-02",
- "pathogen": "COVID-19",
- "percent_test_positivity": "6.7"
- },
- {
- "week_end": "2024-03-02",
- "pathogen": "Influenza",
- "percent_test_positivity": "15.0"
- },
- {
- "week_end": "2024-03-02",
- "pathogen": "RSV",
- "percent_test_positivity": "3.1"
- },
- {
- "week_end": "2024-03-09",
- "pathogen": "COVID-19",
- "percent_test_positivity": "5.5"
- },
- {
- "week_end": "2024-03-09",
- "pathogen": "Influenza",
- "percent_test_positivity": "14.2"
- },
- {
- "week_end": "2024-03-09",
- "pathogen": "RSV",
- "percent_test_positivity": "2.8"
- },
- {
- "week_end": "2024-03-16",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.6"
- },
- {
- "week_end": "2024-03-16",
- "pathogen": "Influenza",
- "percent_test_positivity": "12.0"
- },
- {
- "week_end": "2024-03-16",
- "pathogen": "RSV",
- "percent_test_positivity": "2.3"
- },
- {
- "week_end": "2024-03-23",
- "pathogen": "COVID-19",
- "percent_test_positivity": "4.0"
- },
- {
- "week_end": "2024-03-23",
- "pathogen": "RSV",
- "percent_test_positivity": "1.9"
- }
- ],
- "showChartBrush": false,
- "datasets": {},
- "visualizationType": "Line",
- "customColors": [
- "#f06f19",
- "#0a58d6",
- "#890664",
- "#000000",
- "#89bf13",
- "#94036f",
- "#87b6f9",
- "#867a77",
- "#000000"
- ],
- "dataFileName": "/wcms/vizdata/Respitory_Viruses/NREVSSWeeklyPercentPositive.json",
- "dataFileSourceType": "url",
- "dataDescription": {
- "horizontal": false,
- "series": true,
- "singleRow": false,
- "xKey": "week_end",
- "valueKeys": [
- "percent_test_positivity"
- ],
- "seriesKey": "pathogen"
- },
- "validated": "4.24.3",
- "dynamicMarginTop": 0,
- "filters": [],
- "runtimeDataUrl": "https://wcms-wp.cdc.gov/wcms/vizdata/Respitory_Viruses/NREVSSWeeklyPercentPositive.json",
- "description": "
Data presented through: ; Data as of:
Dataset on data.cdc.gov | Link to Dataset",
- "regions": [
- {
- "from": "14",
- "to": "2024-01-13",
- "label": "",
- "background": "#777777",
- "toType": "Last Date",
- "fromType": "Previous Days"
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/chart/examples/xaxis.json b/packages/chart/examples/xaxis.json
deleted file mode 100644
index cf09910dce..0000000000
--- a/packages/chart/examples/xaxis.json
+++ /dev/null
@@ -1,493 +0,0 @@
-{
- "type": "chart",
- "debugSvg": false,
- "chartMessage": {
- "noData": "No Data Available"
- },
- "title": "",
- "showTitle": true,
- "showDownloadMediaButton": false,
- "theme": "theme-blue",
- "animate": false,
- "fontSize": "small",
- "lineDatapointStyle": "hover",
- "lineDatapointColor": "Same as Line",
- "barHasBorder": "false",
- "isLollipopChart": false,
- "lollipopShape": "circle",
- "lollipopColorStyle": "two-tone",
- "visualizationSubType": "regular",
- "barStyle": "",
- "roundingStyle": "standard",
- "tipRounding": "top",
- "isResponsiveTicks": false,
- "general": {
- "showDownloadButton": false
- },
- "padding": {
- "left": 5,
- "right": 5
- },
- "suppressedData": [],
- "preliminaryData": [],
- "yAxis": {
- "hideAxis": false,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": "55",
- "gridLines": true,
- "enablePadding": true,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": true,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "",
- "axisPadding": 0,
- "scalePadding": 10,
- "tickRotation": 0,
- "anchors": [],
- "label": "Percent of Beds Occupied (7-Day Average)"
- },
- "boxplot": {
- "plots": [],
- "borders": "true",
- "firstQuartilePercentage": 25,
- "thirdQuartilePercentage": 75,
- "boxWidthPercentage": 40,
- "plotOutlierValues": false,
- "plotNonOutlierValues": true,
- "legend": {
- "showHowToReadText": false,
- "howToReadText": ""
- },
- "labels": {
- "q1": "Lower Quartile",
- "q2": "q2",
- "q3": "Upper Quartile",
- "q4": "q4",
- "minimum": "Minimum",
- "maximum": "Maximum",
- "mean": "Mean",
- "median": "Median",
- "sd": "Standard Deviation",
- "iqr": "Interquartile Range",
- "total": "Total",
- "outliers": "Outliers",
- "values": "Values",
- "lowerBounds": "Lower Bounds",
- "upperBounds": "Upper Bounds"
- }
- },
- "topAxis": {
- "hasLine": false
- },
- "isLegendValue": false,
- "barThickness": 0.35,
- "barHeight": 25,
- "barSpace": 15,
- "heights": {
- "vertical": "350",
- "horizontal": 750
- },
- "xAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "date",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": "110",
- "tickRotation": "45",
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "12",
- "labelOffset": 65,
- "axisPadding": 0,
- "target": 0,
- "maxTickRotation": 0,
- "dataKey": "week_end",
- "dateParseFormat": "%Y-%m-%d",
- "dateDisplayFormat": "%m/%d/%Y",
- "label": "Week Ending",
- "tickWidthMax": 81,
- "padding": 6
- },
- "table": {
- "label": "Data Table",
- "expanded": false,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "indexLabel": "Week Ending",
- "download": true,
- "showVertical": true,
- "dateDisplayFormat": "",
- "show": true
- },
- "orientation": "vertical",
- "color": "pinkpurple",
- "columns": {},
- "legend": {
- "hide": false,
- "behavior": "isolate",
- "axisAlign": true,
- "singleRow": true,
- "colorCode": "",
- "reverseLabelOrder": false,
- "description": "Select a virus to add or remove it from the graphic",
- "dynamicLegend": false,
- "dynamicLegendDefaultText": "Show All",
- "dynamicLegendItemLimit": 5,
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
- "dynamicLegendChartMessage": "Select Options from the Legend",
- "lineMode": false,
- "verticalSorted": false,
- "highlightOnHover": false,
- "seriesHighlight": [],
- "position": "bottom"
- },
- "brush": {
- "height": 25,
- "data": [],
- "active": false,
- "pattern_id": "brush_pattern",
- "accent_color": "#ddd"
- },
- "exclusions": {
- "active": false,
- "keys": []
- },
- "palette": "qualitative-bold",
- "isPaletteReversed": false,
- "twoColor": {
- "palette": "monochrome-1",
- "isPaletteReversed": false
- },
- "labels": false,
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": "%",
- "abbreviated": true,
- "bottomSuffix": "",
- "bottomPrefix": "",
- "bottomAbbreviated": false,
- "roundTo": "1"
- },
- "confidenceKeys": {},
- "visual": {
- "border": true,
- "accent": true,
- "background": true,
- "verticalHoverLine": true,
- "horizontalHoverLine": false
- },
- "useLogScale": false,
- "filterBehavior": "Filter Change",
- "highlightedBarValues": [],
- "series": [
- {
- "dataKey": "All Patients",
- "type": "Line",
- "axis": "Left",
- "tooltip": true
- },
- {
- "dataKey": "COVID-19",
- "type": "Line",
- "axis": "Left",
- "tooltip": true
- },
- {
- "dataKey": "Influenza",
- "type": "Line",
- "axis": "Left",
- "tooltip": true
- }
- ],
- "tooltips": {
- "opacity": 90,
- "singleSeries": false,
- "dateDisplayFormat": ""
- },
- "forestPlot": {
- "startAt": 0,
- "colors": {
- "line": "",
- "shape": ""
- },
- "lineOfNoEffect": {
- "show": true
- },
- "type": "",
- "pooledResult": {
- "diamondHeight": 5,
- "column": ""
- },
- "estimateField": "",
- "estimateRadius": "",
- "shape": "",
- "rowHeight": 20,
- "description": {
- "show": true,
- "text": "description",
- "location": 0
- },
- "result": {
- "show": true,
- "text": "result",
- "location": 100
- },
- "radius": {
- "min": 1,
- "max": 8,
- "scalingColumn": ""
- },
- "regression": {
- "lower": 0,
- "upper": 0,
- "estimateField": 0
- },
- "leftWidthOffset": 0,
- "rightWidthOffset": 0,
- "showZeroLine": false,
- "leftLabel": "",
- "rightLabel": "",
- "hideDateCategoryCol": false,
- "width": "auto",
- "lowerCiField": "",
- "upperCiField": ""
- },
- "area": {
- "isStacked": false
- },
- "sankey": {
- "title": {
- "defaultColor": "black"
- },
- "iterations": 1,
- "rxValue": 0.9,
- "overallSize": {
- "width": 900,
- "height": 700
- },
- "margin": {
- "margin_y": 25,
- "margin_x": 0
- },
- "nodeSize": {
- "nodeWidth": 26,
- "nodeHeight": 40
- },
- "nodePadding": 55,
- "nodeFontColor": "black",
- "nodeColor": {
- "default": "#ff8500",
- "inactive": "#808080"
- },
- "linkColor": {
- "default": "#ffc900",
- "inactive": "#D3D3D3"
- },
- "opacity": {
- "nodeOpacityDefault": 1,
- "nodeOpacityInactive": 0.1,
- "LinkOpacityDefault": 1,
- "LinkOpacityInactive": 0.1
- },
- "storyNodeFontColor": "#006778",
- "storyNodeText": [],
- "nodeValueStyle": {
- "textBefore": "(",
- "textAfter": ")"
- },
- "data": []
- },
- "showChartBrush": false,
- "visualizationType": "Line",
- "customColors": [
- "#000000",
- "#f06f19",
- "#0a58d6",
- "#890664",
- "#000000",
- "#0A6C75",
- "#00a089",
- "#87b6f9",
- "#867a77",
- "#000000"
- ],
- "dataFileName": "/wcms/vizdata/Respitory_Viruses/NHSNHospitalCapacity.json",
- "dataFileSourceType": "url",
- "dataUrl": "/wcms/vizdata/Respitory_Viruses/NHSNHospitalCapacity.json",
- "dataDescription": {
- "horizontal": false,
- "series": true,
- "singleRow": false,
- "seriesKey": "patient_type",
- "xKey": "week_end",
- "valueKeys": [
- "percent_beds_occupied"
- ]
- },
- "validated": "4.24.3",
- "filters": [
- {
- "values": [
- "United States",
- "Alabama",
- "Alaska",
- "Arizona",
- "Arkansas",
- "California",
- "Colorado",
- "Connecticut",
- "Delaware",
- "District of Columbia",
- "Florida",
- "Georgia",
- "Hawaii",
- "Idaho",
- "Illinois",
- "Indiana",
- "Iowa",
- "Kansas",
- "Kentucky",
- "Louisiana",
- "Maine",
- "Maryland",
- "Massachusetts",
- "Michigan",
- "Minnesota",
- "Mississippi",
- "Missouri",
- "Montana",
- "Nebraska",
- "Nevada",
- "New Hampshire",
- "New Jersey",
- "New Mexico",
- "New York",
- "North Carolina",
- "North Dakota",
- "Ohio",
- "Oklahoma",
- "Oregon",
- "Pennsylvania",
- "Puerto Rico",
- "Rhode Island",
- "South Carolina",
- "South Dakota",
- "Tennessee",
- "Texas",
- "Utah",
- "Vermont",
- "Virgin Islands",
- "Virginia",
- "Washington",
- "West Virginia",
- "Wisconsin",
- "Wyoming"
- ],
- "active": "United States",
- "filterStyle": "dropdown",
- "order": "cust",
- "columnName": "geography",
- "orderedValues": [
- "United States",
- "Alabama",
- "Alaska",
- "Arizona",
- "Arkansas",
- "California",
- "Colorado",
- "Connecticut",
- "Delaware",
- "District of Columbia",
- "Florida",
- "Georgia",
- "Hawaii",
- "Idaho",
- "Illinois",
- "Indiana",
- "Iowa",
- "Kansas",
- "Kentucky",
- "Louisiana",
- "Maine",
- "Maryland",
- "Massachusetts",
- "Michigan",
- "Minnesota",
- "Mississippi",
- "Missouri",
- "Montana",
- "Nebraska",
- "Nevada",
- "New Hampshire",
- "New Jersey",
- "New Mexico",
- "New York",
- "North Carolina",
- "North Dakota",
- "Ohio",
- "Oklahoma",
- "Oregon",
- "Pennsylvania",
- "Puerto Rico",
- "Rhode Island",
- "South Carolina",
- "South Dakota",
- "Tennessee",
- "Texas",
- "Utah",
- "Vermont",
- "Virgin Islands",
- "Virginia",
- "Washington",
- "West Virginia",
- "Wisconsin",
- "Wyoming"
- ]
- },
- {
- "values": [
- "ICU",
- "Inpatient"
- ],
- "active": "Inpatient",
- "filterStyle": "dropdown",
- "order": "asc",
- "columnName": "bed_type"
- }
- ],
- "runtimeDataUrl": "https://wcms-wp-test.cdc.gov/wcms/vizdata/Respitory_Viruses/NHSNHospitalCapacity.json",
- "dynamicMarginTop": 0,
- "description": "Data presented through: ; Data as of:
Dataset on data.cdc.gov | Link to Dataset",
- "footnotes": "",
- "regions": [
- {
- "background": "#777777",
- "from": "7",
- "to": "2024-01-13",
- "fromType": "Previous Days",
- "toType": "Last Date"
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/chart/src/_stories/_mock/paired-bar-abbr.json b/packages/chart/src/_stories/_mock/paired-bar-abbr.json
index e4bd8057ef..9434632ff5 100644
--- a/packages/chart/src/_stories/_mock/paired-bar-abbr.json
+++ b/packages/chart/src/_stories/_mock/paired-bar-abbr.json
@@ -366,7 +366,7 @@
"Female": "500"
}
],
- "dataFileName": "paired-bar-formatted.json",
+ "dataFileName": "/examples/feature/paired-bar/__data__/paired-bar-formatted.json",
"dataFileSourceType": "file",
"formattedData": [
{
diff --git a/packages/chart/src/_stories/_mock/paired-bar.json b/packages/chart/src/_stories/_mock/paired-bar.json
index bbf89c6490..c1456316f9 100644
--- a/packages/chart/src/_stories/_mock/paired-bar.json
+++ b/packages/chart/src/_stories/_mock/paired-bar.json
@@ -246,7 +246,7 @@
{ "Age Group": "45-54", "Male": "8259", "Female": "5633" },
{ "Age Group": "55-64", "Male": "1235", "Female": "810" }
],
- "dataFileName": "paired-bar-formatted.json",
+ "dataFileName": "/examples/feature/paired-bar/__data__/paired-bar-formatted.json",
"dataFileSourceType": "file",
"formattedData": [
{ "Age Group": "65", "Male": "730", "Female": "402" },
diff --git a/packages/core/generateViteConfig.js b/packages/core/generateViteConfig.js
index ac65ae28c2..727539c8a9 100644
--- a/packages/core/generateViteConfig.js
+++ b/packages/core/generateViteConfig.js
@@ -113,6 +113,8 @@ function listJsonFiles(dir, baseDir, ancestorRealPaths = new Set()) {
const entries = fs.readdirSync(dir, { withFileTypes: true })
for (const entry of entries) {
+ if (entry.name === '__data__') continue
+
const fullPath = path.join(dir, entry.name)
if (isTraversableDirectory(entry, fullPath)) {
files.push(...listJsonFiles(fullPath, baseDir, nextAncestorRealPaths))
diff --git a/packages/dashboard/examples/DEV-6574.json b/packages/dashboard/examples/DEV-6574.json
deleted file mode 100644
index 1f81d83f86..0000000000
--- a/packages/dashboard/examples/DEV-6574.json
+++ /dev/null
@@ -1,2224 +0,0 @@
-{
- "dashboard": {
- "theme": "theme-blue",
- "sharedFilters": [
- {
- "key": "State",
- "type": "urlfilter",
- "datasetKey": "http://localhost:8080/examples/filters/California.json",
- "filterBy": "File Name",
- "fileName": "${query}",
- "apiFilter": {
- "apiEndpoint": "http://localhost:8080/examples/filters/States.json",
- "valueSelector": "geography",
- "textSelector": "geography",
- "defaultValue": "California"
- },
- "tier": 1,
- "active": "Colorado"
- },
- {
- "key": "County",
- "type": "datafilter",
- "datasetKey": "http://localhost:8080/examples/filters/California.json",
- "parents": "State",
- "tier": 2,
- "columnName": "county",
- "usedBy": [
- "chart1703177915838"
- ],
- "showDropdown": true
- }
- ]
- },
- "rows": [
- [
- {
- "width": 12,
- "widget": "chart1703177915838"
- },
- {},
- {}
- ]
- ],
- "visualizations": {
- "chart1703177915838": {
- "type": "chart",
- "debugSvg": false,
- "chartMessage": {
- "noData": "No Data Available"
- },
- "title": "",
- "showTitle": true,
- "showDownloadMediaButton": false,
- "theme": "theme-blue",
- "animate": false,
- "fontSize": "medium",
- "lineDatapointStyle": "hover",
- "lineDatapointColor": "Same as Line",
- "barHasBorder": "false",
- "isLollipopChart": false,
- "lollipopShape": "circle",
- "lollipopColorStyle": "two-tone",
- "visualizationSubType": "regular",
- "barStyle": "",
- "roundingStyle": "standard",
- "tipRounding": "top",
- "isResponsiveTicks": false,
- "general": {
- "showDownloadButton": false
- },
- "padding": {
- "left": 5,
- "right": 5
- },
- "suppressedData": [],
- "yAxis": {
- "hideAxis": false,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 50,
- "gridLines": false,
- "enablePadding": false,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": true,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "",
- "axisPadding": 0,
- "tickRotation": 0,
- "anchors": []
- },
- "boxplot": {
- "plots": [],
- "borders": "true",
- "firstQuartilePercentage": 25,
- "thirdQuartilePercentage": 75,
- "boxWidthPercentage": 40,
- "plotOutlierValues": false,
- "plotNonOutlierValues": true,
- "legend": {
- "showHowToReadText": false,
- "howToReadText": ""
- },
- "labels": {
- "q1": "Lower Quartile",
- "q2": "q2",
- "q3": "Upper Quartile",
- "q4": "q4",
- "minimum": "Minimum",
- "maximum": "Maximum",
- "mean": "Mean",
- "median": "Median",
- "sd": "Standard Deviation",
- "iqr": "Interquartile Range",
- "total": "Total",
- "outliers": "Outliers",
- "values": "Values",
- "lowerBounds": "Lower Bounds",
- "upperBounds": "Upper Bounds"
- }
- },
- "topAxis": {
- "hasLine": false
- },
- "isLegendValue": false,
- "barThickness": 0.35,
- "barHeight": 25,
- "barSpace": 15,
- "heights": {
- "vertical": 300,
- "horizontal": 750
- },
- "xAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "date",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 75,
- "tickRotation": 0,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "",
- "labelOffset": 65,
- "axisPadding": 0,
- "target": 0,
- "maxTickRotation": 0,
- "dataKey": "week_end",
- "dateParseFormat": "%Y-%m-%d",
- "dateDisplayFormat": "%Y-%m-%d",
- "tickWidthMax": 93
- },
- "table": {
- "label": "Data Table",
- "expanded": true,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "indexLabel": "",
- "download": false,
- "showVertical": true,
- "show": false
- },
- "orientation": "vertical",
- "color": "pinkpurple",
- "columns": {},
- "legend": {
- "hide": false,
- "behavior": "isolate",
- "singleRow": false,
- "colorCode": "",
- "reverseLabelOrder": false,
- "description": "",
- "dynamicLegend": false,
- "dynamicLegendDefaultText": "Show All",
- "dynamicLegendItemLimit": 5,
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
- "dynamicLegendChartMessage": "Select Options from the Legend",
- "lineMode": false,
- "verticalSorted": false,
- "highlightOnHover": false
- },
- "brush": {
- "height": 25,
- "data": [
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-01"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-08"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-15"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-22"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-29"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-05"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-12"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-19"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-26"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-03"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "11.06",
- "percent_visits_covid": "4.42",
- "percent_visits_influenza": "6.47",
- "percent_visits_rsv": "0.54",
- "week_end": "2022-12-10"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "9.08",
- "percent_visits_covid": "3.98",
- "percent_visits_influenza": "4.85",
- "percent_visits_rsv": "0.41",
- "week_end": "2022-12-17"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "9.67",
- "percent_visits_covid": "3.34",
- "percent_visits_influenza": "6.07",
- "percent_visits_rsv": "0.35",
- "week_end": "2022-12-24"
- },
- {
- "county": "",
- "ed_trends_covid": "",
- "ed_trends_influenza": "",
- "ed_trends_rsv": "",
- "geography": "",
- "hsa": "",
- "hsa_counties": "",
- "percent_visits_combined": "8.0",
- "percent_visits_covid": "4.35",
- "percent_visits_influenza": "3.51",
- "percent_visits_rsv": "0.29",
- "week_end": "2022-12-31"
- }
- ],
- "active": false
- },
- "exclusions": {
- "active": false,
- "keys": []
- },
- "palette": "qualitative-bold",
- "isPaletteReversed": false,
- "twoColor": {
- "palette": "monochrome-1",
- "isPaletteReversed": false
- },
- "labels": false,
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": "",
- "abbreviated": false,
- "bottomSuffix": "",
- "bottomPrefix": "",
- "bottomAbbreviated": false
- },
- "confidenceKeys": {},
- "visual": {
- "border": true,
- "accent": true,
- "background": true,
- "verticalHoverLine": false,
- "horizontalHoverLine": false
- },
- "useLogScale": false,
- "filterBehavior": "Filter Change",
- "highlightedBarValues": [],
- "series": [
- {
- "dataKey": "percent_visits_covid",
- "type": "Bar",
- "axis": "Left",
- "tooltip": true
- }
- ],
- "tooltips": {
- "opacity": 90,
- "singleSeries": false
- },
- "forestPlot": {
- "startAt": 0,
- "colors": {
- "line": "",
- "shape": ""
- },
- "lineOfNoEffect": {
- "show": true
- },
- "type": "",
- "pooledResult": {
- "diamondHeight": 5,
- "column": ""
- },
- "estimateField": "",
- "estimateRadius": "",
- "shape": "",
- "rowHeight": 20,
- "description": {
- "show": true,
- "text": "description",
- "location": 0
- },
- "result": {
- "show": true,
- "text": "result",
- "location": 100
- },
- "radius": {
- "min": 1,
- "max": 8,
- "scalingColumn": ""
- },
- "regression": {
- "lower": 0,
- "upper": 0,
- "estimateField": 0
- },
- "leftWidthOffset": 0,
- "rightWidthOffset": 0,
- "showZeroLine": false,
- "hideDateCategoryCol": false,
- "leftLabel": "",
- "rightLabel": ""
- },
- "area": {
- "isStacked": false
- },
- "openModal": false,
- "uid": "chart1703177915838",
- "visualizationType": "Bar",
- "dataDescription": {
- "horizontal": false,
- "series": false
- },
- "dataKey": "http://localhost:8080/examples/filters/California.json",
- "editing": false,
- "validated": 4.23,
- "dynamicMarginTop": 0,
- "formattedData": [
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.67",
- "percent_visits_covid": "1.4",
- "percent_visits_influenza": "0.11",
- "percent_visits_rsv": "0.17",
- "week_end": "2022-10-01"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.78",
- "percent_visits_covid": "1.43",
- "percent_visits_influenza": "0.12",
- "percent_visits_rsv": "0.23",
- "week_end": "2022-10-08"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.97",
- "percent_visits_covid": "1.45",
- "percent_visits_influenza": "0.15",
- "percent_visits_rsv": "0.38",
- "week_end": "2022-10-15"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.58",
- "percent_visits_covid": "1.77",
- "percent_visits_influenza": "0.19",
- "percent_visits_rsv": "0.65",
- "week_end": "2022-10-22"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "3.47",
- "percent_visits_covid": "2.04",
- "percent_visits_influenza": "0.51",
- "percent_visits_rsv": "0.94",
- "week_end": "2022-10-29"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "5.04",
- "percent_visits_covid": "2.65",
- "percent_visits_influenza": "1.02",
- "percent_visits_rsv": "1.42",
- "week_end": "2022-11-05"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "7.16",
- "percent_visits_covid": "3.03",
- "percent_visits_influenza": "1.95",
- "percent_visits_rsv": "2.29",
- "week_end": "2022-11-12"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "9.35",
- "percent_visits_covid": "3.35",
- "percent_visits_influenza": "3.54",
- "percent_visits_rsv": "2.63",
- "week_end": "2022-11-19"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "11.13",
- "percent_visits_covid": "3.68",
- "percent_visits_influenza": "5.32",
- "percent_visits_rsv": "2.39",
- "week_end": "2022-11-26"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "10.71",
- "percent_visits_covid": "3.44",
- "percent_visits_influenza": "5.7",
- "percent_visits_rsv": "1.86",
- "week_end": "2022-12-03"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "9.27",
- "percent_visits_covid": "2.79",
- "percent_visits_influenza": "5.4",
- "percent_visits_rsv": "1.26",
- "week_end": "2022-12-10"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "8.66",
- "percent_visits_covid": "2.43",
- "percent_visits_influenza": "5.43",
- "percent_visits_rsv": "0.99",
- "week_end": "2022-12-17"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "8.05",
- "percent_visits_covid": "2.11",
- "percent_visits_influenza": "5.43",
- "percent_visits_rsv": "0.64",
- "week_end": "2022-12-24"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "6.66",
- "percent_visits_covid": "2.06",
- "percent_visits_influenza": "4.01",
- "percent_visits_rsv": "0.71",
- "week_end": "2022-12-31"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "4.4",
- "percent_visits_covid": "1.69",
- "percent_visits_influenza": "2.29",
- "percent_visits_rsv": "0.5",
- "week_end": "2023-01-07"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.48",
- "percent_visits_covid": "1.22",
- "percent_visits_influenza": "1.03",
- "percent_visits_rsv": "0.25",
- "week_end": "2023-01-14"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.32",
- "percent_visits_covid": "1.41",
- "percent_visits_influenza": "0.68",
- "percent_visits_rsv": "0.25",
- "week_end": "2023-01-21"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.01",
- "percent_visits_covid": "1.27",
- "percent_visits_influenza": "0.49",
- "percent_visits_rsv": "0.26",
- "week_end": "2023-01-28"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.21",
- "percent_visits_covid": "1.57",
- "percent_visits_influenza": "0.47",
- "percent_visits_rsv": "0.19",
- "week_end": "2023-02-04"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.29",
- "percent_visits_covid": "1.84",
- "percent_visits_influenza": "0.29",
- "percent_visits_rsv": "0.18",
- "week_end": "2023-02-11"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.31",
- "percent_visits_covid": "1.94",
- "percent_visits_influenza": "0.25",
- "percent_visits_rsv": "0.13",
- "week_end": "2023-02-18"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.39",
- "percent_visits_covid": "2.05",
- "percent_visits_influenza": "0.28",
- "percent_visits_rsv": "0.08",
- "week_end": "2023-02-25"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.09",
- "percent_visits_covid": "1.77",
- "percent_visits_influenza": "0.26",
- "percent_visits_rsv": "0.07",
- "week_end": "2023-03-04"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.81",
- "percent_visits_covid": "1.54",
- "percent_visits_influenza": "0.2",
- "percent_visits_rsv": "0.07",
- "week_end": "2023-03-11"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.53",
- "percent_visits_covid": "1.28",
- "percent_visits_influenza": "0.22",
- "percent_visits_rsv": "0.04",
- "week_end": "2023-03-18"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.55",
- "percent_visits_covid": "1.33",
- "percent_visits_influenza": "0.16",
- "percent_visits_rsv": "0.06",
- "week_end": "2023-03-25"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.5",
- "percent_visits_covid": "1.29",
- "percent_visits_influenza": "0.18",
- "percent_visits_rsv": "0.04",
- "week_end": "2023-04-01"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.31",
- "percent_visits_covid": "1.12",
- "percent_visits_influenza": "0.15",
- "percent_visits_rsv": "0.04",
- "week_end": "2023-04-08"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.21",
- "percent_visits_covid": "0.95",
- "percent_visits_influenza": "0.23",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-04-15"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.97",
- "percent_visits_covid": "0.77",
- "percent_visits_influenza": "0.19",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-04-22"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.83",
- "percent_visits_covid": "0.67",
- "percent_visits_influenza": "0.15",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-04-29"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.84",
- "percent_visits_covid": "0.68",
- "percent_visits_influenza": "0.15",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-05-06"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.84",
- "percent_visits_covid": "0.59",
- "percent_visits_influenza": "0.23",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-05-13"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.79",
- "percent_visits_covid": "0.58",
- "percent_visits_influenza": "0.2",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-05-20"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.73",
- "percent_visits_covid": "0.63",
- "percent_visits_influenza": "0.09",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-05-27"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.47",
- "percent_visits_covid": "0.35",
- "percent_visits_influenza": "0.12",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-03"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.5",
- "percent_visits_covid": "0.37",
- "percent_visits_influenza": "0.12",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-10"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.5",
- "percent_visits_covid": "0.42",
- "percent_visits_influenza": "0.07",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-17"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.48",
- "percent_visits_covid": "0.4",
- "percent_visits_influenza": "0.08",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-24"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.49",
- "percent_visits_covid": "0.45",
- "percent_visits_influenza": "0.05",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-01"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.53",
- "percent_visits_covid": "0.43",
- "percent_visits_influenza": "0.09",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-07-08"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.54",
- "percent_visits_covid": "0.47",
- "percent_visits_influenza": "0.07",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-15"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.53",
- "percent_visits_covid": "0.46",
- "percent_visits_influenza": "0.07",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-22"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.66",
- "percent_visits_covid": "0.59",
- "percent_visits_influenza": "0.04",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-07-29"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.82",
- "percent_visits_covid": "0.74",
- "percent_visits_influenza": "0.09",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-08-05"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.03",
- "percent_visits_covid": "0.96",
- "percent_visits_influenza": "0.06",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-08-12"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.2",
- "percent_visits_covid": "1.1",
- "percent_visits_influenza": "0.1",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-08-19"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.55",
- "percent_visits_covid": "1.43",
- "percent_visits_influenza": "0.12",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-08-26"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.74",
- "percent_visits_covid": "1.65",
- "percent_visits_influenza": "0.1",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-09-02"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.88",
- "percent_visits_covid": "1.75",
- "percent_visits_influenza": "0.13",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-09-09"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.75",
- "percent_visits_covid": "1.62",
- "percent_visits_influenza": "0.09",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-09-16"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.96",
- "percent_visits_covid": "1.83",
- "percent_visits_influenza": "0.11",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-09-23"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.09",
- "percent_visits_covid": "1.91",
- "percent_visits_influenza": "0.16",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-09-30"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.26",
- "percent_visits_covid": "1.98",
- "percent_visits_influenza": "0.23",
- "percent_visits_rsv": "0.06",
- "week_end": "2023-10-07"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.65",
- "percent_visits_covid": "2.27",
- "percent_visits_influenza": "0.33",
- "percent_visits_rsv": "0.06",
- "week_end": "2023-10-14"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "3.02",
- "percent_visits_covid": "2.44",
- "percent_visits_influenza": "0.5",
- "percent_visits_rsv": "0.09",
- "week_end": "2023-10-21"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.95",
- "percent_visits_covid": "2.3",
- "percent_visits_influenza": "0.58",
- "percent_visits_rsv": "0.09",
- "week_end": "2023-10-28"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "3.33",
- "percent_visits_covid": "2.38",
- "percent_visits_influenza": "0.9",
- "percent_visits_rsv": "0.07",
- "week_end": "2023-11-04"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "3.88",
- "percent_visits_covid": "2.25",
- "percent_visits_influenza": "1.41",
- "percent_visits_rsv": "0.26",
- "week_end": "2023-11-11"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "4.52",
- "percent_visits_covid": "2.35",
- "percent_visits_influenza": "1.92",
- "percent_visits_rsv": "0.29",
- "week_end": "2023-11-18"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "5.36",
- "percent_visits_covid": "2.36",
- "percent_visits_influenza": "2.53",
- "percent_visits_rsv": "0.56",
- "week_end": "2023-11-25"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "5.59",
- "percent_visits_covid": "2.46",
- "percent_visits_influenza": "2.69",
- "percent_visits_rsv": "0.51",
- "week_end": "2023-12-02"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-01"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-08"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-15"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-22"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-29"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-05"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-12"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-19"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-26"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-03"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-10"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-17"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-24"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-31"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-01-07"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-01-14"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-01-21"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-01-28"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-02-04"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-02-11"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-02-18"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-02-25"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-03-04"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-03-11"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-03-18"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-03-25"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-01"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-08"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-15"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-22"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-29"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-05-06"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-05-13"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-05-20"
- },
- {
- "county": "All",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "All",
- "hsa_counties": "All",
- "percent_visits_combined": "2.63",
- "percent_visits_covid": "1.2",
- "percent_visits_influenza": "1.15",
- "percent_visits_rsv": "0.32",
- "week_end": "2023-01-14"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-05-27"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-03"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-10"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-17"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-24"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-01"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-08"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-15"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-22"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-29"
- }
- ]
- }
- },
- "table": {
- "label": "Data Table",
- "show": true,
- "showDownloadUrl": false,
- "showVertical": true
- },
- "newViz": true,
- "datasets": {
- "http://localhost:8080/examples/filters/California.json": {
- "dataFileSize": 6511,
- "dataFileName": "http://localhost:8080/examples/filters/California.json",
- "dataFileSourceType": "url",
- "dataFileFormat": "JSON",
- "preview": true,
- "dataUrl": "http://localhost:8080/examples/filters/California.json",
- "runtimeDataUrl": "http://localhost:8080/examples/filters/Colorado.json?geography=undefined",
- "data": [
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-01"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-08"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-15"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-22"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-29"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-05"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-12"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-19"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-26"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-03"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "11.06",
- "percent_visits_covid": "4.42",
- "percent_visits_influenza": "6.47",
- "percent_visits_rsv": "0.54",
- "week_end": "2022-12-10"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "9.08",
- "percent_visits_covid": "3.98",
- "percent_visits_influenza": "4.85",
- "percent_visits_rsv": "0.41",
- "week_end": "2022-12-17"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "9.67",
- "percent_visits_covid": "3.34",
- "percent_visits_influenza": "6.07",
- "percent_visits_rsv": "0.35",
- "week_end": "2022-12-24"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "8.0",
- "percent_visits_covid": "4.35",
- "percent_visits_influenza": "3.51",
- "percent_visits_rsv": "0.29",
- "week_end": "2022-12-31"
- }
- ]
- }
- },
- "type": "dashboard",
- "runtime": {}
-}
\ No newline at end of file
diff --git a/packages/data-bite/examples/sankey/data-2.json b/packages/dashboard/examples/__data__/data-2.json
similarity index 96%
rename from packages/data-bite/examples/sankey/data-2.json
rename to packages/dashboard/examples/__data__/data-2.json
index 7a78c153db..462d084bb4 100644
--- a/packages/data-bite/examples/sankey/data-2.json
+++ b/packages/dashboard/examples/__data__/data-2.json
@@ -3,4 +3,4 @@
"Text": "Number of Deaths",
"Value": "4736"
}
-]
\ No newline at end of file
+]
diff --git a/packages/dashboard/examples/data/data-with-metadata.json b/packages/dashboard/examples/__data__/data-with-metadata.json
similarity index 100%
rename from packages/dashboard/examples/data/data-with-metadata.json
rename to packages/dashboard/examples/__data__/data-with-metadata.json
diff --git a/packages/data-bite/examples/sankey/data.json b/packages/dashboard/examples/__data__/data.json
similarity index 97%
rename from packages/data-bite/examples/sankey/data.json
rename to packages/dashboard/examples/__data__/data.json
index 82ad67ae55..9b99b36d6d 100644
--- a/packages/data-bite/examples/sankey/data.json
+++ b/packages/dashboard/examples/__data__/data.json
@@ -3,4 +3,4 @@
"Text": "Number of EMS Responses",
"Value": "467136"
}
-]
\ No newline at end of file
+]
diff --git a/packages/dashboard/examples/legend-issue-data.json b/packages/dashboard/examples/__data__/legend-issue-data.json
similarity index 100%
rename from packages/dashboard/examples/legend-issue-data.json
rename to packages/dashboard/examples/__data__/legend-issue-data.json
diff --git a/packages/dashboard/examples/api-dashboard-data.json b/packages/dashboard/examples/api-dashboard-data.json
deleted file mode 100644
index 880398d7fa..0000000000
--- a/packages/dashboard/examples/api-dashboard-data.json
+++ /dev/null
@@ -1,272 +0,0 @@
-[
- {
- "geography": "United States",
- "year": "2021",
- "category": "Category A",
- "value": 100
- },
- {
- "geography": "United States",
- "year": "2021",
- "category": "Category B",
- "value": 200
- },
- {
- "geography": "United States",
- "year": "2021",
- "category": "Category C",
- "value": 300
- },
- {
- "geography": "United States",
- "year": "2022",
- "category": "Category A",
- "value": 400
- },
- {
- "geography": "United States",
- "year": "2022",
- "category": "Category B",
- "value": 500
- },
- {
- "geography": "United States",
- "year": "2022",
- "category": "Category C",
- "value": 600
- },
- {
- "geography": "United States",
- "year": "2023",
- "category": "Category A",
- "value": 700
- },
- {
- "geography": "United States",
- "year": "2023",
- "category": "Category B",
- "value": 800
- },
- {
- "geography": "United States",
- "year": "2023",
- "category": "Category C",
- "value": 900
- },
- {
- "geography": "California",
- "year": "2021",
- "category": "Category A",
- "value": 1000
- },
- {
- "geography": "California",
- "year": "2021",
- "category": "Category B",
- "value": 2000
- },
- {
- "geography": "California",
- "year": "2021",
- "category": "Category C",
- "value": 3000
- },
- {
- "geography": "California",
- "year": "2022",
- "category": "Category A",
- "value": 4000
- },
- {
- "geography": "California",
- "year": "2022",
- "category": "Category B",
- "value": 5000
- },
- {
- "geography": "California",
- "year": "2022",
- "category": "Category C",
- "value": 6000
- },
- {
- "geography": "California",
- "year": "2023",
- "category": "Category A",
- "value": 7000
- },
- {
- "geography": "California",
- "year": "2023",
- "category": "Category B",
- "value": 8000
- },
- {
- "geography": "California",
- "year": "2023",
- "category": "Category C",
- "value": 9000
- },
- {
- "geography": "Texas",
- "year": "2021",
- "category": "Category A",
- "value": 10000
- },
- {
- "geography": "Texas",
- "year": "2021",
- "category": "Category B",
- "value": 20000
- },
- {
- "geography": "Texas",
- "year": "2021",
- "category": "Category C",
- "value": 30000
- },
- {
- "geography": "Texas",
- "year": "2022",
- "category": "Category A",
- "value": 40000
- },
- {
- "geography": "Texas",
- "year": "2022",
- "category": "Category B",
- "value": 50000
- },
- {
- "geography": "Texas",
- "year": "2022",
- "category": "Category C",
- "value": 60000
- },
- {
- "geography": "Texas",
- "year": "2023",
- "category": "Category A",
- "value": 70000
- },
- {
- "geography": "Texas",
- "year": "2023",
- "category": "Category B",
- "value": 80000
- },
- {
- "geography": "Texas",
- "year": "2023",
- "category": "Category C",
- "value": 90000
- },
- {
- "geography": "New York",
- "year": "2021",
- "category": "Category A",
- "value": 15000
- },
- {
- "geography": "New York",
- "year": "2021",
- "category": "Category B",
- "value": 25000
- },
- {
- "geography": "New York",
- "year": "2021",
- "category": "Category C",
- "value": 35000
- },
- {
- "geography": "New York",
- "year": "2022",
- "category": "Category A",
- "value": 45000
- },
- {
- "geography": "New York",
- "year": "2022",
- "category": "Category B",
- "value": 55000
- },
- {
- "geography": "New York",
- "year": "2022",
- "category": "Category C",
- "value": 65000
- },
- {
- "geography": "New York",
- "year": "2023",
- "category": "Category A",
- "value": 75000
- },
- {
- "geography": "New York",
- "year": "2023",
- "category": "Category B",
- "value": 85000
- },
- {
- "geography": "New York",
- "year": "2023",
- "category": "Category C",
- "value": 95000
- },
- {
- "geography": "Florida",
- "year": "2021",
- "category": "Category A",
- "value": 12000
- },
- {
- "geography": "Florida",
- "year": "2021",
- "category": "Category B",
- "value": 22000
- },
- {
- "geography": "Florida",
- "year": "2021",
- "category": "Category C",
- "value": 32000
- },
- {
- "geography": "Florida",
- "year": "2022",
- "category": "Category A",
- "value": 42000
- },
- {
- "geography": "Florida",
- "year": "2022",
- "category": "Category B",
- "value": 52000
- },
- {
- "geography": "Florida",
- "year": "2022",
- "category": "Category C",
- "value": 62000
- },
- {
- "geography": "Florida",
- "year": "2023",
- "category": "Category A",
- "value": 72000
- },
- {
- "geography": "Florida",
- "year": "2023",
- "category": "Category B",
- "value": 82000
- },
- {
- "geography": "Florida",
- "year": "2023",
- "category": "Category C",
- "value": 92000
- }
-]
diff --git a/packages/dashboard/examples/api-dashboard-years.json b/packages/dashboard/examples/api-dashboard-years.json
deleted file mode 100644
index 44f2604d37..0000000000
--- a/packages/dashboard/examples/api-dashboard-years.json
+++ /dev/null
@@ -1,11 +0,0 @@
-[
- {
- "year": "2021"
- },
- {
- "year": "2022"
- },
- {
- "year": "2023"
- }
-]
diff --git a/packages/dashboard/examples/api-geographies-data.json b/packages/dashboard/examples/api-geographies-data.json
deleted file mode 100644
index 5c065707e2..0000000000
--- a/packages/dashboard/examples/api-geographies-data.json
+++ /dev/null
@@ -1,11 +0,0 @@
-[
- {
- "geography": "California"
- },
- {
- "geography": "Texas"
- },
- {
- "geography": "United States"
- }
-]
diff --git a/packages/dashboard/examples/api-test/categories.json b/packages/dashboard/examples/api-test/__data__/categories.json
similarity index 100%
rename from packages/dashboard/examples/api-test/categories.json
rename to packages/dashboard/examples/api-test/__data__/categories.json
diff --git a/packages/dashboard/examples/api-test/chart-data.json b/packages/dashboard/examples/api-test/__data__/chart-data.json
similarity index 100%
rename from packages/dashboard/examples/api-test/chart-data.json
rename to packages/dashboard/examples/api-test/__data__/chart-data.json
diff --git a/packages/dashboard/examples/api-test/topics.json b/packages/dashboard/examples/api-test/__data__/topics.json
similarity index 100%
rename from packages/dashboard/examples/api-test/topics.json
rename to packages/dashboard/examples/api-test/__data__/topics.json
diff --git a/packages/dashboard/examples/api-test/years.json b/packages/dashboard/examples/api-test/__data__/years.json
similarity index 100%
rename from packages/dashboard/examples/api-test/years.json
rename to packages/dashboard/examples/api-test/__data__/years.json
diff --git a/packages/dashboard/examples/chart-data.json b/packages/dashboard/examples/chart-data.json
deleted file mode 100644
index a74c1cd0f1..0000000000
--- a/packages/dashboard/examples/chart-data.json
+++ /dev/null
@@ -1,5409 +0,0 @@
-{
- "type": "chart",
- "debugSvg": false,
- "chartMessage": {
- "noData": "No Data Available"
- },
- "title": "Birth to Death Ratio, by Selected Urban Classification",
- "showTitle": true,
- "showDownloadMediaButton": false,
- "theme": "theme-blue",
- "animate": false,
- "fontSize": "medium",
- "lineDatapointStyle": "hover",
- "lineDatapointColor": "Same as Line",
- "barHasBorder": "false",
- "isLollipopChart": false,
- "lollipopShape": "circle",
- "lollipopColorStyle": "two-tone",
- "visualizationSubType": "regular",
- "barStyle": "",
- "roundingStyle": "standard",
- "tipRounding": "top",
- "isResponsiveTicks": false,
- "general": {
- "showDownloadButton": false
- },
- "padding": {
- "left": 5,
- "right": 5
- },
- "suppressedData": [],
- "preliminaryData": [],
- "yAxis": {
- "hideAxis": false,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 50,
- "gridLines": false,
- "enablePadding": false,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": false,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "",
- "axisPadding": 0,
- "scalePadding": 10,
- "tickRotation": 0,
- "anchors": []
- },
- "boxplot": {
- "plots": [],
- "borders": "true",
- "firstQuartilePercentage": 25,
- "thirdQuartilePercentage": 75,
- "boxWidthPercentage": 40,
- "plotOutlierValues": false,
- "plotNonOutlierValues": true,
- "legend": {
- "showHowToReadText": false,
- "howToReadText": ""
- },
- "labels": {
- "q1": "Lower Quartile",
- "q2": "q2",
- "q3": "Upper Quartile",
- "q4": "q4",
- "minimum": "Minimum",
- "maximum": "Maximum",
- "mean": "Mean",
- "median": "Median",
- "sd": "Standard Deviation",
- "iqr": "Interquartile Range",
- "total": "Total",
- "outliers": "Outliers",
- "values": "Values",
- "lowerBounds": "Lower Bounds",
- "upperBounds": "Upper Bounds"
- }
- },
- "topAxis": {
- "hasLine": false
- },
- "isLegendValue": false,
- "barThickness": 0.35,
- "barHeight": 25,
- "barSpace": 15,
- "heights": {
- "vertical": 300,
- "horizontal": 750
- },
- "xAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "categorical",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 75,
- "tickRotation": 0,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "",
- "labelOffset": 65,
- "axisPadding": 200,
- "target": 0,
- "maxTickRotation": 0,
- "dataKey": "Year",
- "tickWidthMax": 41
- },
- "table": {
- "label": "Data Table",
- "expanded": true,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "indexLabel": "",
- "download": true,
- "showVertical": true,
- "dateDisplayFormat": "",
- "show": false
- },
- "orientation": "vertical",
- "color": "pinkpurple",
- "columns": {},
- "legend": {
- "hide": false,
- "behavior": "isolate",
- "axisAlign": true,
- "singleRow": true,
- "colorCode": "",
- "reverseLabelOrder": false,
- "description": "",
- "dynamicLegend": false,
- "dynamicLegendDefaultText": "Show All",
- "dynamicLegendItemLimit": 5,
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
- "dynamicLegendChartMessage": "Select Options from the Legend",
- "lineMode": false,
- "verticalSorted": false,
- "highlightOnHover": false,
- "seriesHighlight": [],
- "position": "bottom"
- },
- "brush": {
- "height": 25,
- "data": [
- {
- "Year": "2000",
- "RU": "",
- "Births": "4026508",
- "Deaths": "2384811",
- "Birth Rates": "1430.8",
- "Death Rates": "847.4",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "",
- "Births": "3993509",
- "Deaths": "2397376",
- "Birth Rates": "1401.4",
- "Death Rates": "841.3",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "",
- "Births": "3989601",
- "Deaths": "2425210",
- "Birth Rates": "1387.1",
- "Death Rates": "843.2",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "",
- "Births": "4089950",
- "Deaths": "2448288",
- "Birth Rates": "1409.8",
- "Death Rates": "843.9",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "",
- "Births": "4112052",
- "Deaths": "2397615",
- "Birth Rates": "1404.4",
- "Death Rates": "818.8",
- "B /D Ratio": "1.72",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "",
- "Births": "4138349",
- "Deaths": "2448017",
- "Birth Rates": "1400.4",
- "Death Rates": "828.4",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "",
- "Births": "4265555",
- "Deaths": "2426264",
- "Birth Rates": "1429.6",
- "Death Rates": "813.1",
- "B /D Ratio": "1.76",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "",
- "Births": "4316233",
- "Deaths": "2423712",
- "Birth Rates": "1432.9",
- "Death Rates": "804.6",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "",
- "Births": "4247694",
- "Deaths": "2469982",
- "Birth Rates": "1396.8",
- "Death Rates": "812.2",
- "B /D Ratio": "1.72",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "",
- "Births": "4130665",
- "Deaths": "2437163",
- "Birth Rates": "1346.5",
- "Death Rates": "794.5",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "",
- "Births": "3999386",
- "Deaths": "2468435",
- "Birth Rates": "1295.4",
- "Death Rates": "799.5",
- "B /D Ratio": "1.62",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "",
- "Births": "3953590",
- "Deaths": "2515458",
- "Birth Rates": "1268.8",
- "Death Rates": "807.3",
- "B /D Ratio": "1.57",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "",
- "Births": "3952841",
- "Deaths": "2543273",
- "Birth Rates": "1259.2",
- "Death Rates": "810.2",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "",
- "Births": "3932181",
- "Deaths": "2596993",
- "Birth Rates": "1243.9",
- "Death Rates": "821.5",
- "B /D Ratio": "1.51",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "",
- "Births": "3988076",
- "Deaths": "2626354",
- "Birth Rates": "1250.7",
- "Death Rates": "823.7",
- "B /D Ratio": "1.52",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "",
- "Births": "3978497",
- "Deaths": "2712630",
- "Birth Rates": "1237.8",
- "Death Rates": "844.0",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "",
- "Births": "3945875",
- "Deaths": "2744251",
- "Birth Rates": "1221.2",
- "Death Rates": "849.3",
- "B /D Ratio": "1.44",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "",
- "Births": "3855500",
- "Deaths": "2813503",
- "Birth Rates": "1183.7",
- "Death Rates": "863.8",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "",
- "Births": "3791712",
- "Deaths": "2839205",
- "Birth Rates": "1159.0",
- "Death Rates": "867.8",
- "B /D Ratio": "1.34",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "",
- "Births": "3747540",
- "Deaths": "2854768",
- "Birth Rates": "1141.7",
- "Death Rates": "869.7",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "",
- "Births": "3613647",
- "Deaths": "3383729",
- "Birth Rates": "1090.3",
- "Death Rates": "1020.9",
- "B /D Ratio": "1.07",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "",
- "Births": "3664292",
- "Deaths": "3464231",
- "Birth Rates": "1104.1",
- "Death Rates": "1043.8",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "",
- "Births": "3667758",
- "Deaths": "3279857",
- "Birth Rates": "1100.5",
- "Death Rates": "984.1",
- "B /D Ratio": "1.12",
- "": ""
- }
- ],
- "active": false
- },
- "exclusions": {
- "active": false,
- "keys": []
- },
- "palette": "sequential-blue",
- "isPaletteReversed": false,
- "twoColor": {
- "palette": "monochrome-1",
- "isPaletteReversed": false
- },
- "labels": false,
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": "",
- "abbreviated": true,
- "bottomSuffix": "",
- "bottomPrefix": "",
- "bottomAbbreviated": false,
- "rightRoundTo": "2"
- },
- "confidenceKeys": {},
- "visual": {
- "border": true,
- "accent": true,
- "background": true,
- "verticalHoverLine": false,
- "horizontalHoverLine": false
- },
- "useLogScale": false,
- "filterBehavior": "Filter Change",
- "highlightedBarValues": [],
- "series": [
- {
- "dataKey": "Births",
- "type": "Bar",
- "axis": "Left",
- "tooltip": true
- },
- {
- "dataKey": "Deaths",
- "type": "Bar",
- "axis": "Left",
- "tooltip": true
- },
- {
- "dataKey": "B /D Ratio",
- "type": "Line",
- "axis": "Right",
- "tooltip": true,
- "name": "Birth to Death Ratio"
- }
- ],
- "tooltips": {
- "opacity": 90,
- "singleSeries": false,
- "dateDisplayFormat": ""
- },
- "forestPlot": {
- "startAt": 0,
- "colors": {
- "line": "",
- "shape": ""
- },
- "lineOfNoEffect": {
- "show": true
- },
- "type": "",
- "pooledResult": {
- "diamondHeight": 5,
- "column": ""
- },
- "estimateField": "",
- "estimateRadius": "",
- "shape": "square",
- "rowHeight": 20,
- "description": {
- "show": true,
- "text": "description",
- "location": 0
- },
- "result": {
- "show": true,
- "text": "result",
- "location": 100
- },
- "radius": {
- "min": 2,
- "max": 10,
- "scalingColumn": ""
- },
- "regression": {
- "lower": 0,
- "upper": 0,
- "estimateField": 0
- },
- "leftWidthOffset": 0,
- "rightWidthOffset": 0,
- "showZeroLine": false,
- "leftLabel": "",
- "rightLabel": ""
- },
- "area": {
- "isStacked": false
- },
- "sankey": {
- "title": {
- "defaultColor": "black"
- },
- "iterations": 1,
- "rxValue": 0.9,
- "overallSize": {
- "width": 900,
- "height": 700
- },
- "margin": {
- "margin_y": 25,
- "margin_x": 0
- },
- "nodeSize": {
- "nodeWidth": 26,
- "nodeHeight": 40
- },
- "nodePadding": 55,
- "nodeFontColor": "black",
- "nodeColor": {
- "default": "#ff8500",
- "inactive": "#808080"
- },
- "linkColor": {
- "default": "#ffc900",
- "inactive": "#D3D3D3"
- },
- "opacity": {
- "nodeOpacityDefault": 1,
- "nodeOpacityInactive": 0.1,
- "LinkOpacityDefault": 1,
- "LinkOpacityInactive": 0.1
- },
- "storyNodeFontColor": "#006778",
- "storyNodeText": [],
- "nodeValueStyle": {
- "textBefore": "(",
- "textAfter": ")"
- },
- "data": []
- },
- "openModal": false,
- "uid": "chart1712624997601",
- "visualizationType": "Combo",
- "dataDescription": {
- "horizontal": false,
- "series": true,
- "singleRow": true
- },
- "dataKey": "URBANICITY DATA 2000-2022 K.csv",
- "editing": true,
- "originalFormattedData": [
- {
- "Year": "2000",
- "RU": "All US",
- "Births": "4,026,508",
- "Deaths": "2,384,811",
- "Birth Rates": "1430.8",
- "Death Rates": "847.4",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "All US",
- "Births": "3,993,509",
- "Deaths": "2,397,376",
- "Birth Rates": "1401.4",
- "Death Rates": "841.3",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "All US",
- "Births": "3,989,601",
- "Deaths": "2,425,210",
- "Birth Rates": "1387.1",
- "Death Rates": "843.2",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "All US",
- "Births": "4,089,950",
- "Deaths": "2,448,288",
- "Birth Rates": "1409.8",
- "Death Rates": "843.9",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "All US",
- "Births": "4,112,052",
- "Deaths": "2,397,615",
- "Birth Rates": "1404.4",
- "Death Rates": "818.8",
- "B /D Ratio": "1.72",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "All US",
- "Births": "4,138,349",
- "Deaths": "2,448,017",
- "Birth Rates": "1400.4",
- "Death Rates": "828.4",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "All US",
- "Births": "4,265,555",
- "Deaths": "2,426,264",
- "Birth Rates": "1429.6",
- "Death Rates": "813.1",
- "B /D Ratio": "1.76",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "All US",
- "Births": "4,316,233",
- "Deaths": "2,423,712",
- "Birth Rates": "1432.9",
- "Death Rates": "804.6",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "All US",
- "Births": "4,247,694",
- "Deaths": "2,469,982",
- "Birth Rates": "1396.8",
- "Death Rates": "812.2",
- "B /D Ratio": "1.72",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "All US",
- "Births": "4,130,665",
- "Deaths": "2,437,163",
- "Birth Rates": "1346.5",
- "Death Rates": "794.5",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "All US",
- "Births": "3,999,386",
- "Deaths": "2,468,435",
- "Birth Rates": "1295.4",
- "Death Rates": "799.5",
- "B /D Ratio": "1.62",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "All US",
- "Births": "3,953,590",
- "Deaths": "2,515,458",
- "Birth Rates": "1268.8",
- "Death Rates": "807.3",
- "B /D Ratio": "1.57",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "All US",
- "Births": "3,952,841",
- "Deaths": "2,543,273",
- "Birth Rates": "1259.2",
- "Death Rates": "810.2",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "All US",
- "Births": "3,932,181",
- "Deaths": "2,596,993",
- "Birth Rates": "1243.9",
- "Death Rates": "821.5",
- "B /D Ratio": "1.51",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "All US",
- "Births": "3,988,076",
- "Deaths": "2,626,354",
- "Birth Rates": "1250.7",
- "Death Rates": "823.7",
- "B /D Ratio": "1.52",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "All US",
- "Births": "3,978,497",
- "Deaths": "2,712,630",
- "Birth Rates": "1237.8",
- "Death Rates": "844.0",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "All US",
- "Births": "3,945,875",
- "Deaths": "2,744,251",
- "Birth Rates": "1221.2",
- "Death Rates": "849.3",
- "B /D Ratio": "1.44",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "All US",
- "Births": "3,855,500",
- "Deaths": "2,813,503",
- "Birth Rates": "1183.7",
- "Death Rates": "863.8",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "All US",
- "Births": "3,791,712",
- "Deaths": "2,839,205",
- "Birth Rates": "1159.0",
- "Death Rates": "867.8",
- "B /D Ratio": "1.34",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "All US",
- "Births": "3,747,540",
- "Deaths": "2,854,768",
- "Birth Rates": "1141.7",
- "Death Rates": "869.7",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "All US",
- "Births": "3,613,647",
- "Deaths": "3,383,729",
- "Birth Rates": "1090.3",
- "Death Rates": "1020.9",
- "B /D Ratio": "1.07",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "All US",
- "Births": "3,664,292",
- "Deaths": "3,464,231",
- "Birth Rates": "1104.1",
- "Death Rates": "1043.8",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "All US",
- "Births": "3,667,758",
- "Deaths": "3,279,857",
- "Birth Rates": "1100.5",
- "Death Rates": "984.1",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Large Central Metro",
- "Births": "1,332,025",
- "Deaths": "663,069",
- "Birth Rates": "1519.4",
- "Death Rates": "756.3",
- "B /D Ratio": "2.01",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Large Central Metro",
- "Births": "1,319,997",
- "Deaths": "682,118",
- "Birth Rates": "1505.7",
- "Death Rates": "778.1",
- "B /D Ratio": "1.94",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Large Central Metro",
- "Births": "1,314,717",
- "Deaths": "661,190",
- "Birth Rates": "1489.5",
- "Death Rates": "749.1",
- "B /D Ratio": "1.99",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Large Central Metro",
- "Births": "1,366,716",
- "Deaths": "676,267",
- "Birth Rates": "1539.8",
- "Death Rates": "761.9",
- "B /D Ratio": "2.02",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Large Central Metro",
- "Births": "1,369,193",
- "Deaths": "661,678",
- "Birth Rates": "1534.2",
- "Death Rates": "741.4",
- "B /D Ratio": "2.07",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Large Central Metro",
- "Births": "1,327,275",
- "Deaths": "669,828",
- "Birth Rates": "1478.7",
- "Death Rates": "746.2",
- "B /D Ratio": "1.98",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Large Central Metro",
- "Births": "1,409,923",
- "Deaths": "659,457",
- "Birth Rates": "1562.8",
- "Death Rates": "731.0",
- "B /D Ratio": "2.14",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Large Central Metro",
- "Births": "1,427,166",
- "Deaths": "651,711",
- "Birth Rates": "1569.4",
- "Death Rates": "716.7",
- "B /D Ratio": "2.19",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Large Central Metro",
- "Births": "1,405,625",
- "Deaths": "658,247",
- "Birth Rates": "1530.7",
- "Death Rates": "716.8",
- "B /D Ratio": "2.14",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Large Central Metro",
- "Births": "1,366,583",
- "Deaths": "645,702",
- "Birth Rates": "1472.3",
- "Death Rates": "695.7",
- "B /D Ratio": "2.12",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Large Central Metro",
- "Births": "1,317,897",
- "Deaths": "647,992",
- "Birth Rates": "1409.4",
- "Death Rates": "693.0",
- "B /D Ratio": "2.03",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Large Central Metro",
- "Births": "1,303,238",
- "Deaths": "659,543",
- "Birth Rates": "1376.2",
- "Death Rates": "696.5",
- "B /D Ratio": "1.98",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Large Central Metro",
- "Births": "1,308,280",
- "Deaths": "665,753",
- "Birth Rates": "1365.7",
- "Death Rates": "695.0",
- "B /D Ratio": "1.97",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Large Central Metro",
- "Births": "1,298,265",
- "Deaths": "678,706",
- "Birth Rates": "1342.0",
- "Death Rates": "701.6",
- "B /D Ratio": "1.91",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Large Central Metro",
- "Births": "1,320,038",
- "Deaths": "681,997",
- "Birth Rates": "1347.9",
- "Death Rates": "696.4",
- "B /D Ratio": "1.94",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Large Central Metro",
- "Births": "1,314,482",
- "Deaths": "702,374",
- "Birth Rates": "1327.8",
- "Death Rates": "709.5",
- "B /D Ratio": "1.87",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Large Central Metro",
- "Births": "1,302,809",
- "Deaths": "713,257",
- "Birth Rates": "1308.8",
- "Death Rates": "716.5",
- "B /D Ratio": "1.83",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Large Central Metro",
- "Births": "1,267,194",
- "Deaths": "727,181",
- "Birth Rates": "1259.6",
- "Death Rates": "722.8",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Large Central Metro",
- "Births": "1,234,725",
- "Deaths": "732,433",
- "Birth Rates": "1224.3",
- "Death Rates": "726.3",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Large Central Metro",
- "Births": "1,213,151",
- "Deaths": "733,320",
- "Birth Rates": "1201.1",
- "Death Rates": "726.0",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Large Central Metro",
- "Births": "1,154,502",
- "Deaths": "901,419",
- "Birth Rates": "1131.5",
- "Death Rates": "883.4",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Large Central Metro",
- "Births": "1,149,090",
- "Deaths": "891,760",
- "Birth Rates": "1136.2",
- "Death Rates": "881.8",
- "B /D Ratio": "1.29",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Large Central Metro",
- "Births": "1,151,010",
- "Deaths": "837,005",
- "Birth Rates": "1138.4",
- "Death Rates": "827.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Large Fringe Metro",
- "Births": "939,455",
- "Deaths": "520,441",
- "Birth Rates": "1403.6",
- "Death Rates": "777.5",
- "B /D Ratio": "1.81",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Large Fringe Metro",
- "Births": "939,058",
- "Deaths": "527,266",
- "Birth Rates": "1380.3",
- "Death Rates": "775.0",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Large Fringe Metro",
- "Births": "943,471",
- "Deaths": "537,194",
- "Birth Rates": "1365.9",
- "Death Rates": "777.7",
- "B /D Ratio": "1.76",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Large Fringe Metro",
- "Births": "963,343",
- "Deaths": "538,524",
- "Birth Rates": "1375.6",
- "Death Rates": "769.0",
- "B /D Ratio": "1.79",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Large Fringe Metro",
- "Births": "967,432",
- "Deaths": "530,580",
- "Birth Rates": "1362.1",
- "Death Rates": "747.1",
- "B /D Ratio": "1.82",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Large Fringe Metro",
- "Births": "965,589",
- "Deaths": "540,777",
- "Birth Rates": "1341.3",
- "Death Rates": "751.2",
- "B /D Ratio": "1.79",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Large Fringe Metro",
- "Births": "995,604",
- "Deaths": "538,567",
- "Birth Rates": "1365.2",
- "Death Rates": "738.5",
- "B /D Ratio": "1.85",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Large Fringe Metro",
- "Births": "1,002,504",
- "Deaths": "540,198",
- "Birth Rates": "1357.8",
- "Death Rates": "731.6",
- "B /D Ratio": "1.86",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Large Fringe Metro",
- "Births": "984,670",
- "Deaths": "553,004",
- "Birth Rates": "1318.2",
- "Death Rates": "740.3",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Large Fringe Metro",
- "Births": "954,730",
- "Deaths": "548,189",
- "Birth Rates": "1265.5",
- "Death Rates": "726.6",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Large Fringe Metro",
- "Births": "927,524",
- "Deaths": "557,890",
- "Birth Rates": "1220.3",
- "Death Rates": "734.0",
- "B /D Ratio": "1.66",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Large Fringe Metro",
- "Births": "916,513",
- "Deaths": "570,623",
- "Birth Rates": "1193.3",
- "Death Rates": "742.9",
- "B /D Ratio": "1.61",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Large Fringe Metro",
- "Births": "911,714",
- "Deaths": "577,213",
- "Birth Rates": "1176.6",
- "Death Rates": "744.9",
- "B /D Ratio": "1.58",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Large Fringe Metro",
- "Births": "910,450",
- "Deaths": "590,246",
- "Birth Rates": "1164.2",
- "Death Rates": "754.8",
- "B /D Ratio": "1.54",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Large Fringe Metro",
- "Births": "929,104",
- "Deaths": "600,649",
- "Birth Rates": "1175.1",
- "Death Rates": "759.7",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Large Fringe Metro",
- "Births": "931,308",
- "Deaths": "622,163",
- "Birth Rates": "1166.1",
- "Death Rates": "779.0",
- "B /D Ratio": "1.50",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Large Fringe Metro",
- "Births": "930,927",
- "Deaths": "633,171",
- "Birth Rates": "1156.5",
- "Death Rates": "786.6",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Large Fringe Metro",
- "Births": "916,104",
- "Deaths": "652,281",
- "Birth Rates": "1126.0",
- "Death Rates": "801.7",
- "B /D Ratio": "1.40",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Large Fringe Metro",
- "Births": "908,170",
- "Deaths": "659,548",
- "Birth Rates": "1108.3",
- "Death Rates": "804.9",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Large Fringe Metro",
- "Births": "901,366",
- "Deaths": "664,855",
- "Birth Rates": "1092.9",
- "Death Rates": "806.1",
- "B /D Ratio": "1.36",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Large Fringe Metro",
- "Births": "875,567",
- "Deaths": "784,109",
- "Birth Rates": "1044.1",
- "Death Rates": "935.1",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Large Fringe Metro",
- "Births": "906,300",
- "Deaths": "791,529",
- "Birth Rates": "1072.6",
- "Death Rates": "936.8",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Large Fringe Metro",
- "Births": "912,993",
- "Deaths": "761,347",
- "Birth Rates": "1071.8",
- "Death Rates": "893.8",
- "B /D Ratio": "1.20",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Medium Metro",
- "Births": "827,303",
- "Deaths": "494,966",
- "Birth Rates": "1436.6",
- "Death Rates": "859.5",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Medium Metro",
- "Births": "821,266",
- "Deaths": "497,520",
- "Birth Rates": "1410.8",
- "Death Rates": "854.6",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Medium Metro",
- "Births": "823,059",
- "Deaths": "506,995",
- "Birth Rates": "1398.0",
- "Death Rates": "861.1",
- "B /D Ratio": "1.62",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Medium Metro",
- "Births": "838,685",
- "Deaths": "510,658",
- "Birth Rates": "1409.1",
- "Death Rates": "858.0",
- "B /D Ratio": "1.64",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Medium Metro",
- "Births": "846,854",
- "Deaths": "500,749",
- "Birth Rates": "1405.3",
- "Death Rates": "830.9",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Medium Metro",
- "Births": "828,435",
- "Deaths": "514,821",
- "Birth Rates": "1357.6",
- "Death Rates": "843.6",
- "B /D Ratio": "1.61",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Medium Metro",
- "Births": "889,912",
- "Deaths": "512,481",
- "Birth Rates": "1438.3",
- "Death Rates": "828.3",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Medium Metro",
- "Births": "902,078",
- "Deaths": "514,363",
- "Birth Rates": "1440.5",
- "Death Rates": "821.4",
- "B /D Ratio": "1.75",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Medium Metro",
- "Births": "887,630",
- "Deaths": "525,867",
- "Birth Rates": "1402.4",
- "Death Rates": "830.8",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Medium Metro",
- "Births": "866,938",
- "Deaths": "519,643",
- "Birth Rates": "1356.7",
- "Death Rates": "813.2",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Medium Metro",
- "Births": "841,737",
- "Deaths": "529,575",
- "Birth Rates": "1307.7",
- "Death Rates": "822.7",
- "B /D Ratio": "1.59",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Medium Metro",
- "Births": "834,518",
- "Deaths": "539,214",
- "Birth Rates": "1283.9",
- "Death Rates": "829.6",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Medium Metro",
- "Births": "834,537",
- "Deaths": "549,033",
- "Birth Rates": "1274.6",
- "Death Rates": "838.6",
- "B /D Ratio": "1.52",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Medium Metro",
- "Births": "828,917",
- "Deaths": "561,528",
- "Birth Rates": "1257.2",
- "Death Rates": "851.7",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Medium Metro",
- "Births": "838,365",
- "Deaths": "571,318",
- "Birth Rates": "1261.3",
- "Death Rates": "859.6",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Medium Metro",
- "Births": "834,040",
- "Deaths": "590,476",
- "Birth Rates": "1244.1",
- "Death Rates": "880.8",
- "B /D Ratio": "1.41",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Medium Metro",
- "Births": "826,615",
- "Deaths": "597,343",
- "Birth Rates": "1224.4",
- "Death Rates": "884.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Medium Metro",
- "Births": "806,341",
- "Deaths": "614,726",
- "Birth Rates": "1184.8",
- "Death Rates": "903.3",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Medium Metro",
- "Births": "795,095",
- "Deaths": "620,692",
- "Birth Rates": "1160.8",
- "Death Rates": "906.2",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Medium Metro",
- "Births": "791,431",
- "Deaths": "625,611",
- "Birth Rates": "1149.6",
- "Death Rates": "908.8",
- "B /D Ratio": "1.27",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Medium Metro",
- "Births": "767,809",
- "Deaths": "732,749",
- "Birth Rates": "1104.7",
- "Death Rates": "1054.2",
- "B /D Ratio": "1.05",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Medium Metro",
- "Births": "782,575",
- "Deaths": "764,696",
- "Birth Rates": "1118.0",
- "Death Rates": "1092.5",
- "B /D Ratio": "1.02",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Medium Metro",
- "Births": "785,215",
- "Deaths": "727,564",
- "Birth Rates": "1113.2",
- "Death Rates": "1031.5",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Small Metro",
- "Births": "352,340",
- "Deaths": "237,415",
- "Birth Rates": "1353.7",
- "Death Rates": "912.2",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Small Metro",
- "Births": "347,935",
- "Deaths": "238,793",
- "Birth Rates": "1327.4",
- "Death Rates": "911.0",
- "B /D Ratio": "1.46",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Small Metro",
- "Births": "349,015",
- "Deaths": "241,337",
- "Birth Rates": "1319.4",
- "Death Rates": "912.4",
- "B /D Ratio": "1.45",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Small Metro",
- "Births": "356,068",
- "Deaths": "244,999",
- "Birth Rates": "1334.4",
- "Death Rates": "918.2",
- "B /D Ratio": "1.45",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Small Metro",
- "Births": "360,101",
- "Deaths": "239,400",
- "Birth Rates": "1334.6",
- "Death Rates": "887.3",
- "B /D Ratio": "1.50",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Small Metro",
- "Births": "364,781",
- "Deaths": "246,840",
- "Birth Rates": "1337.9",
- "Death Rates": "905.4",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Small Metro",
- "Births": "377,871",
- "Deaths": "245,828",
- "Birth Rates": "1368.1",
- "Death Rates": "890.0",
- "B /D Ratio": "1.54",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Small Metro",
- "Births": "386,290",
- "Deaths": "245,914",
- "Birth Rates": "1384.1",
- "Death Rates": "881.1",
- "B /D Ratio": "1.57",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Small Metro",
- "Births": "380,506",
- "Deaths": "251,650",
- "Birth Rates": "1350.5",
- "Death Rates": "893.2",
- "B /D Ratio": "1.51",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Small Metro",
- "Births": "370,792",
- "Deaths": "250,195",
- "Birth Rates": "1305.1",
- "Death Rates": "880.6",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Small Metro",
- "Births": "362,131",
- "Deaths": "253,642",
- "Birth Rates": "1267.5",
- "Death Rates": "887.8",
- "B /D Ratio": "1.43",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Small Metro",
- "Births": "357,401",
- "Deaths": "259,433",
- "Birth Rates": "1242.4",
- "Death Rates": "901.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Small Metro",
- "Births": "357,913",
- "Deaths": "261,996",
- "Birth Rates": "1238.1",
- "Death Rates": "906.3",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Small Metro",
- "Births": "355,211",
- "Deaths": "268,092",
- "Birth Rates": "1223.3",
- "Death Rates": "923.3",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Small Metro",
- "Births": "359,775",
- "Deaths": "271,460",
- "Birth Rates": "1231.9",
- "Death Rates": "929.5",
- "B /D Ratio": "1.33",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Small Metro",
- "Births": "358,756",
- "Deaths": "281,098",
- "Birth Rates": "1222.5",
- "Death Rates": "957.9",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Small Metro",
- "Births": "352,937",
- "Deaths": "283,500",
- "Birth Rates": "1197.8",
- "Death Rates": "962.2",
- "B /D Ratio": "1.24",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Small Metro",
- "Births": "345,053",
- "Deaths": "291,275",
- "Birth Rates": "1165.0",
- "Death Rates": "983.5",
- "B /D Ratio": "1.18",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Small Metro",
- "Births": "340,600",
- "Deaths": "295,592",
- "Birth Rates": "1143.5",
- "Death Rates": "992.4",
- "B /D Ratio": "1.15",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Small Metro",
- "Births": "335,248",
- "Deaths": "296,445",
- "Birth Rates": "1123.0",
- "Death Rates": "993.0",
- "B /D Ratio": "1.13",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Small Metro",
- "Births": "325,326",
- "Deaths": "345,276",
- "Birth Rates": "1082.8",
- "Death Rates": "1149.2",
- "B /D Ratio": "0.94",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Small Metro",
- "Births": "329,862",
- "Deaths": "362,409",
- "Birth Rates": "1092.6",
- "Death Rates": "1200.4",
- "B /D Ratio": "0.91",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Small Metro",
- "Births": "327,514",
- "Deaths": "342,357",
- "Birth Rates": "1079.0",
- "Death Rates": "1127.9",
- "B /D Ratio": "0.96",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Micropolitan",
- "Births": "342,252",
- "Deaths": "258,629",
- "Birth Rates": "1319.7",
- "Death Rates": "997.3",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Micropolitan",
- "Births": "336,820",
- "Deaths": "258,732",
- "Birth Rates": "1295.7",
- "Death Rates": "995.3",
- "B /D Ratio": "1.30",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Micropolitan",
- "Births": "333,606",
- "Deaths": "262,513",
- "Birth Rates": "1278.4",
- "Death Rates": "1006.0",
- "B /D Ratio": "1.27",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Micropolitan",
- "Births": "336,792",
- "Deaths": "263,106",
- "Birth Rates": "1285.0",
- "Death Rates": "1003.8",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Micropolitan",
- "Births": "339,815",
- "Deaths": "257,118",
- "Birth Rates": "1289.6",
- "Death Rates": "975.8",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Micropolitan",
- "Births": "343,630",
- "Deaths": "263,134",
- "Birth Rates": "1297.3",
- "Death Rates": "993.4",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Micropolitan",
- "Births": "355,116",
- "Deaths": "261,280",
- "Birth Rates": "1330.8",
- "Death Rates": "979.1",
- "B /D Ratio": "1.36",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Micropolitan",
- "Births": "358,997",
- "Deaths": "261,596",
- "Birth Rates": "1337.8",
- "Death Rates": "974.8",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Micropolitan",
- "Births": "354,647",
- "Deaths": "268,498",
- "Birth Rates": "1314.8",
- "Death Rates": "995.4",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Micropolitan",
- "Births": "344,733",
- "Deaths": "263,249",
- "Birth Rates": "1273.2",
- "Death Rates": "972.3",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Micropolitan",
- "Births": "330,937",
- "Deaths": "266,780",
- "Birth Rates": "1218.7",
- "Death Rates": "982.5",
- "B /D Ratio": "1.24",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Micropolitan",
- "Births": "326,245",
- "Deaths": "271,867",
- "Birth Rates": "1198.8",
- "Death Rates": "999.0",
- "B /D Ratio": "1.20",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Micropolitan",
- "Births": "325,640",
- "Deaths": "273,597",
- "Birth Rates": "1196.5",
- "Death Rates": "1005.3",
- "B /D Ratio": "1.19",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Micropolitan",
- "Births": "324,326",
- "Deaths": "279,386",
- "Birth Rates": "1191.5",
- "Death Rates": "1026.4",
- "B /D Ratio": "1.16",
- "": " "
- },
- {
- "Year": "2014",
- "RU": "Micropolitan",
- "Births": "326,585",
- "Deaths": "280,191",
- "Birth Rates": "1198.8",
- "Death Rates": "1028.5",
- "B /D Ratio": "1.17",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Micropolitan",
- "Births": "325,395",
- "Deaths": "289,758",
- "Birth Rates": "1193.6",
- "Death Rates": "1062.9",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Micropolitan",
- "Births": "320,494",
- "Deaths": "290,565",
- "Birth Rates": "1175.8",
- "Death Rates": "1066.0",
- "B /D Ratio": "1.10",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Micropolitan",
- "Births": "314,128",
- "Deaths": "297,517",
- "Birth Rates": "1152.3",
- "Death Rates": "1091.4",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Micropolitan",
- "Births": "308,073",
- "Deaths": "299,711",
- "Birth Rates": "1128.9",
- "Death Rates": "1098.2",
- "B /D Ratio": "1.03",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Micropolitan",
- "Births": "304,246",
- "Deaths": "302,347",
- "Birth Rates": "1114.7",
- "Death Rates": "1107.7",
- "B /D Ratio": "1.01",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Micropolitan",
- "Births": "295,324",
- "Deaths": "350,667",
- "Birth Rates": "1077.8",
- "Death Rates": "1279.7",
- "B /D Ratio": "0.84",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Micropolitan",
- "Births": "298,356",
- "Deaths": "369,077",
- "Birth Rates": "1086.9",
- "Death Rates": "1344.6",
- "B /D Ratio": "0.81",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Micropolitan",
- "Births": "294,843",
- "Deaths": "345,832",
- "Birth Rates": "1073.5",
- "Death Rates": "1259.2",
- "B /D Ratio": "0.85",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "NonCore",
- "Births": "233,133",
- "Deaths": "213,563",
- "Birth Rates": "1235.6",
- "Death Rates": "1131.9",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "NonCore",
- "Births": "228,433",
- "Deaths": "211,996",
- "Birth Rates": "1212.1",
- "Death Rates": "1124.9",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "NonCore",
- "Births": "225,733",
- "Deaths": "215,981",
- "Birth Rates": "1196.7",
- "Death Rates": "1145.0",
- "B /D Ratio": "1.05",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "NonCore",
- "Births": "228,346",
- "Deaths": "214,734",
- "Birth Rates": "1207.9",
- "Death Rates": "1135.9",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "NonCore",
- "Births": "228,657",
- "Deaths": "208,090",
- "Birth Rates": "1207.0",
- "Death Rates": "1098.4",
- "B /D Ratio": "1.10",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "NonCore",
- "Births": "231,038",
- "Deaths": "212,617",
- "Birth Rates": "1216.8",
- "Death Rates": "1119.8",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "NonCore",
- "Births": "237,129",
- "Deaths": "208,651",
- "Birth Rates": "1244.6",
- "Death Rates": "1095.1",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "NonCore",
- "Births": "239,198",
- "Deaths": "209,930",
- "Birth Rates": "1252.7",
- "Death Rates": "1099.4",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "NonCore",
- "Births": "234,616",
- "Deaths": "214,718",
- "Birth Rates": "1226.8",
- "Death Rates": "1122.8",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "NonCore",
- "Births": "226,889",
- "Deaths": "210,185",
- "Birth Rates": "1186.5",
- "Death Rates": "1099.2",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "NonCore",
- "Births": "219,160",
- "Deaths": "212,556",
- "Birth Rates": "1145.1",
- "Death Rates": "1110.6",
- "B /D Ratio": "1.03",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "NonCore",
- "Births": "215,675",
- "Deaths": "214,778",
- "Birth Rates": "1128.8",
- "Death Rates": "1124.1",
- "B /D Ratio": "1.00",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "NonCore",
- "Births": "214,757",
- "Deaths": "215,687",
- "Birth Rates": "1128.3",
- "Death Rates": "1133.2",
- "B /D Ratio": "1.00",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "NonCore",
- "Births": "215,012",
- "Deaths": "219,035",
- "Birth Rates": "1131.8",
- "Death Rates": "1153.0",
- "B /D Ratio": "0.98",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "NonCore",
- "Births": "214,209",
- "Deaths": "220,803",
- "Birth Rates": "1130.6",
- "Death Rates": "1165.4",
- "B /D Ratio": "0.97",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "NonCore",
- "Births": "214,516",
- "Deaths": "226,761",
- "Birth Rates": "1134.6",
- "Death Rates": "1199.4",
- "B /D Ratio": "0.95",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "NonCore",
- "Births": "212,093",
- "Deaths": "226,412",
- "Birth Rates": "1125.0",
- "Death Rates": "1201.0",
- "B /D Ratio": "0.94",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "NonCore",
- "Births": "206,680",
- "Deaths": "230,523",
- "Birth Rates": "1098.1",
- "Death Rates": "1224.8",
- "B /D Ratio": "0.90",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "NonCore",
- "Births": "205,049",
- "Deaths": "231,229",
- "Birth Rates": "1090.1",
- "Death Rates": "1229.3",
- "B /D Ratio": "0.89",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "NonCore",
- "Births": "202,098",
- "Deaths": "232,260",
- "Birth Rates": "1076.8",
- "Death Rates": "1237.5",
- "B /D Ratio": "0.87",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "NonCore",
- "Births": "195,119",
- "Deaths": "269,509",
- "Birth Rates": "1048.8",
- "Death Rates": "1448.7",
- "B /D Ratio": "0.72",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "NonCore",
- "Births": "198,109",
- "Deaths": "284,760",
- "Birth Rates": "1063.8",
- "Death Rates": "1529.0",
- "B /D Ratio": "0.70",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "NonCore",
- "Births": "196,182",
- "Deaths": "265,752",
- "Birth Rates": "1052.4",
- "Death Rates": "1425.6",
- "B /D Ratio": "0.74",
- "": ""
- }
- ],
- "validated": "4.24.3",
- "dynamicMarginTop": 0,
- "filters": [
- {
- "values": [
- "All US",
- "Large Central Metro",
- "Large Fringe Metro",
- "Medium Metro",
- "Micropolitan",
- "NonCore",
- "Small Metro"
- ],
- "active": "All US",
- "filterStyle": "pill",
- "order": "asc",
- "columnName": "RU",
- "showDropdown": true
- }
- ],
- "formattedData": [
- {
- "Year": "2000",
- "RU": "All US",
- "Births": "4,026,508",
- "Deaths": "2,384,811",
- "Birth Rates": "1430.8",
- "Death Rates": "847.4",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "All US",
- "Births": "3,993,509",
- "Deaths": "2,397,376",
- "Birth Rates": "1401.4",
- "Death Rates": "841.3",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "All US",
- "Births": "3,989,601",
- "Deaths": "2,425,210",
- "Birth Rates": "1387.1",
- "Death Rates": "843.2",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "All US",
- "Births": "4,089,950",
- "Deaths": "2,448,288",
- "Birth Rates": "1409.8",
- "Death Rates": "843.9",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "All US",
- "Births": "4,112,052",
- "Deaths": "2,397,615",
- "Birth Rates": "1404.4",
- "Death Rates": "818.8",
- "B /D Ratio": "1.72",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "All US",
- "Births": "4,138,349",
- "Deaths": "2,448,017",
- "Birth Rates": "1400.4",
- "Death Rates": "828.4",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "All US",
- "Births": "4,265,555",
- "Deaths": "2,426,264",
- "Birth Rates": "1429.6",
- "Death Rates": "813.1",
- "B /D Ratio": "1.76",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "All US",
- "Births": "4,316,233",
- "Deaths": "2,423,712",
- "Birth Rates": "1432.9",
- "Death Rates": "804.6",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "All US",
- "Births": "4,247,694",
- "Deaths": "2,469,982",
- "Birth Rates": "1396.8",
- "Death Rates": "812.2",
- "B /D Ratio": "1.72",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "All US",
- "Births": "4,130,665",
- "Deaths": "2,437,163",
- "Birth Rates": "1346.5",
- "Death Rates": "794.5",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "All US",
- "Births": "3,999,386",
- "Deaths": "2,468,435",
- "Birth Rates": "1295.4",
- "Death Rates": "799.5",
- "B /D Ratio": "1.62",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "All US",
- "Births": "3,953,590",
- "Deaths": "2,515,458",
- "Birth Rates": "1268.8",
- "Death Rates": "807.3",
- "B /D Ratio": "1.57",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "All US",
- "Births": "3,952,841",
- "Deaths": "2,543,273",
- "Birth Rates": "1259.2",
- "Death Rates": "810.2",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "All US",
- "Births": "3,932,181",
- "Deaths": "2,596,993",
- "Birth Rates": "1243.9",
- "Death Rates": "821.5",
- "B /D Ratio": "1.51",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "All US",
- "Births": "3,988,076",
- "Deaths": "2,626,354",
- "Birth Rates": "1250.7",
- "Death Rates": "823.7",
- "B /D Ratio": "1.52",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "All US",
- "Births": "3,978,497",
- "Deaths": "2,712,630",
- "Birth Rates": "1237.8",
- "Death Rates": "844.0",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "All US",
- "Births": "3,945,875",
- "Deaths": "2,744,251",
- "Birth Rates": "1221.2",
- "Death Rates": "849.3",
- "B /D Ratio": "1.44",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "All US",
- "Births": "3,855,500",
- "Deaths": "2,813,503",
- "Birth Rates": "1183.7",
- "Death Rates": "863.8",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "All US",
- "Births": "3,791,712",
- "Deaths": "2,839,205",
- "Birth Rates": "1159.0",
- "Death Rates": "867.8",
- "B /D Ratio": "1.34",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "All US",
- "Births": "3,747,540",
- "Deaths": "2,854,768",
- "Birth Rates": "1141.7",
- "Death Rates": "869.7",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "All US",
- "Births": "3,613,647",
- "Deaths": "3,383,729",
- "Birth Rates": "1090.3",
- "Death Rates": "1020.9",
- "B /D Ratio": "1.07",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "All US",
- "Births": "3,664,292",
- "Deaths": "3,464,231",
- "Birth Rates": "1104.1",
- "Death Rates": "1043.8",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "All US",
- "Births": "3,667,758",
- "Deaths": "3,279,857",
- "Birth Rates": "1100.5",
- "Death Rates": "984.1",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Large Central Metro",
- "Births": "1,332,025",
- "Deaths": "663,069",
- "Birth Rates": "1519.4",
- "Death Rates": "756.3",
- "B /D Ratio": "2.01",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Large Central Metro",
- "Births": "1,319,997",
- "Deaths": "682,118",
- "Birth Rates": "1505.7",
- "Death Rates": "778.1",
- "B /D Ratio": "1.94",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Large Central Metro",
- "Births": "1,314,717",
- "Deaths": "661,190",
- "Birth Rates": "1489.5",
- "Death Rates": "749.1",
- "B /D Ratio": "1.99",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Large Central Metro",
- "Births": "1,366,716",
- "Deaths": "676,267",
- "Birth Rates": "1539.8",
- "Death Rates": "761.9",
- "B /D Ratio": "2.02",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Large Central Metro",
- "Births": "1,369,193",
- "Deaths": "661,678",
- "Birth Rates": "1534.2",
- "Death Rates": "741.4",
- "B /D Ratio": "2.07",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Large Central Metro",
- "Births": "1,327,275",
- "Deaths": "669,828",
- "Birth Rates": "1478.7",
- "Death Rates": "746.2",
- "B /D Ratio": "1.98",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Large Central Metro",
- "Births": "1,409,923",
- "Deaths": "659,457",
- "Birth Rates": "1562.8",
- "Death Rates": "731.0",
- "B /D Ratio": "2.14",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Large Central Metro",
- "Births": "1,427,166",
- "Deaths": "651,711",
- "Birth Rates": "1569.4",
- "Death Rates": "716.7",
- "B /D Ratio": "2.19",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Large Central Metro",
- "Births": "1,405,625",
- "Deaths": "658,247",
- "Birth Rates": "1530.7",
- "Death Rates": "716.8",
- "B /D Ratio": "2.14",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Large Central Metro",
- "Births": "1,366,583",
- "Deaths": "645,702",
- "Birth Rates": "1472.3",
- "Death Rates": "695.7",
- "B /D Ratio": "2.12",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Large Central Metro",
- "Births": "1,317,897",
- "Deaths": "647,992",
- "Birth Rates": "1409.4",
- "Death Rates": "693.0",
- "B /D Ratio": "2.03",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Large Central Metro",
- "Births": "1,303,238",
- "Deaths": "659,543",
- "Birth Rates": "1376.2",
- "Death Rates": "696.5",
- "B /D Ratio": "1.98",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Large Central Metro",
- "Births": "1,308,280",
- "Deaths": "665,753",
- "Birth Rates": "1365.7",
- "Death Rates": "695.0",
- "B /D Ratio": "1.97",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Large Central Metro",
- "Births": "1,298,265",
- "Deaths": "678,706",
- "Birth Rates": "1342.0",
- "Death Rates": "701.6",
- "B /D Ratio": "1.91",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Large Central Metro",
- "Births": "1,320,038",
- "Deaths": "681,997",
- "Birth Rates": "1347.9",
- "Death Rates": "696.4",
- "B /D Ratio": "1.94",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Large Central Metro",
- "Births": "1,314,482",
- "Deaths": "702,374",
- "Birth Rates": "1327.8",
- "Death Rates": "709.5",
- "B /D Ratio": "1.87",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Large Central Metro",
- "Births": "1,302,809",
- "Deaths": "713,257",
- "Birth Rates": "1308.8",
- "Death Rates": "716.5",
- "B /D Ratio": "1.83",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Large Central Metro",
- "Births": "1,267,194",
- "Deaths": "727,181",
- "Birth Rates": "1259.6",
- "Death Rates": "722.8",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Large Central Metro",
- "Births": "1,234,725",
- "Deaths": "732,433",
- "Birth Rates": "1224.3",
- "Death Rates": "726.3",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Large Central Metro",
- "Births": "1,213,151",
- "Deaths": "733,320",
- "Birth Rates": "1201.1",
- "Death Rates": "726.0",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Large Central Metro",
- "Births": "1,154,502",
- "Deaths": "901,419",
- "Birth Rates": "1131.5",
- "Death Rates": "883.4",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Large Central Metro",
- "Births": "1,149,090",
- "Deaths": "891,760",
- "Birth Rates": "1136.2",
- "Death Rates": "881.8",
- "B /D Ratio": "1.29",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Large Central Metro",
- "Births": "1,151,010",
- "Deaths": "837,005",
- "Birth Rates": "1138.4",
- "Death Rates": "827.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Large Fringe Metro",
- "Births": "939,455",
- "Deaths": "520,441",
- "Birth Rates": "1403.6",
- "Death Rates": "777.5",
- "B /D Ratio": "1.81",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Large Fringe Metro",
- "Births": "939,058",
- "Deaths": "527,266",
- "Birth Rates": "1380.3",
- "Death Rates": "775.0",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Large Fringe Metro",
- "Births": "943,471",
- "Deaths": "537,194",
- "Birth Rates": "1365.9",
- "Death Rates": "777.7",
- "B /D Ratio": "1.76",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Large Fringe Metro",
- "Births": "963,343",
- "Deaths": "538,524",
- "Birth Rates": "1375.6",
- "Death Rates": "769.0",
- "B /D Ratio": "1.79",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Large Fringe Metro",
- "Births": "967,432",
- "Deaths": "530,580",
- "Birth Rates": "1362.1",
- "Death Rates": "747.1",
- "B /D Ratio": "1.82",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Large Fringe Metro",
- "Births": "965,589",
- "Deaths": "540,777",
- "Birth Rates": "1341.3",
- "Death Rates": "751.2",
- "B /D Ratio": "1.79",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Large Fringe Metro",
- "Births": "995,604",
- "Deaths": "538,567",
- "Birth Rates": "1365.2",
- "Death Rates": "738.5",
- "B /D Ratio": "1.85",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Large Fringe Metro",
- "Births": "1,002,504",
- "Deaths": "540,198",
- "Birth Rates": "1357.8",
- "Death Rates": "731.6",
- "B /D Ratio": "1.86",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Large Fringe Metro",
- "Births": "984,670",
- "Deaths": "553,004",
- "Birth Rates": "1318.2",
- "Death Rates": "740.3",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Large Fringe Metro",
- "Births": "954,730",
- "Deaths": "548,189",
- "Birth Rates": "1265.5",
- "Death Rates": "726.6",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Large Fringe Metro",
- "Births": "927,524",
- "Deaths": "557,890",
- "Birth Rates": "1220.3",
- "Death Rates": "734.0",
- "B /D Ratio": "1.66",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Large Fringe Metro",
- "Births": "916,513",
- "Deaths": "570,623",
- "Birth Rates": "1193.3",
- "Death Rates": "742.9",
- "B /D Ratio": "1.61",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Large Fringe Metro",
- "Births": "911,714",
- "Deaths": "577,213",
- "Birth Rates": "1176.6",
- "Death Rates": "744.9",
- "B /D Ratio": "1.58",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Large Fringe Metro",
- "Births": "910,450",
- "Deaths": "590,246",
- "Birth Rates": "1164.2",
- "Death Rates": "754.8",
- "B /D Ratio": "1.54",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Large Fringe Metro",
- "Births": "929,104",
- "Deaths": "600,649",
- "Birth Rates": "1175.1",
- "Death Rates": "759.7",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Large Fringe Metro",
- "Births": "931,308",
- "Deaths": "622,163",
- "Birth Rates": "1166.1",
- "Death Rates": "779.0",
- "B /D Ratio": "1.50",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Large Fringe Metro",
- "Births": "930,927",
- "Deaths": "633,171",
- "Birth Rates": "1156.5",
- "Death Rates": "786.6",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Large Fringe Metro",
- "Births": "916,104",
- "Deaths": "652,281",
- "Birth Rates": "1126.0",
- "Death Rates": "801.7",
- "B /D Ratio": "1.40",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Large Fringe Metro",
- "Births": "908,170",
- "Deaths": "659,548",
- "Birth Rates": "1108.3",
- "Death Rates": "804.9",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Large Fringe Metro",
- "Births": "901,366",
- "Deaths": "664,855",
- "Birth Rates": "1092.9",
- "Death Rates": "806.1",
- "B /D Ratio": "1.36",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Large Fringe Metro",
- "Births": "875,567",
- "Deaths": "784,109",
- "Birth Rates": "1044.1",
- "Death Rates": "935.1",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Large Fringe Metro",
- "Births": "906,300",
- "Deaths": "791,529",
- "Birth Rates": "1072.6",
- "Death Rates": "936.8",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Large Fringe Metro",
- "Births": "912,993",
- "Deaths": "761,347",
- "Birth Rates": "1071.8",
- "Death Rates": "893.8",
- "B /D Ratio": "1.20",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Medium Metro",
- "Births": "827,303",
- "Deaths": "494,966",
- "Birth Rates": "1436.6",
- "Death Rates": "859.5",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Medium Metro",
- "Births": "821,266",
- "Deaths": "497,520",
- "Birth Rates": "1410.8",
- "Death Rates": "854.6",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Medium Metro",
- "Births": "823,059",
- "Deaths": "506,995",
- "Birth Rates": "1398.0",
- "Death Rates": "861.1",
- "B /D Ratio": "1.62",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Medium Metro",
- "Births": "838,685",
- "Deaths": "510,658",
- "Birth Rates": "1409.1",
- "Death Rates": "858.0",
- "B /D Ratio": "1.64",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Medium Metro",
- "Births": "846,854",
- "Deaths": "500,749",
- "Birth Rates": "1405.3",
- "Death Rates": "830.9",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Medium Metro",
- "Births": "828,435",
- "Deaths": "514,821",
- "Birth Rates": "1357.6",
- "Death Rates": "843.6",
- "B /D Ratio": "1.61",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Medium Metro",
- "Births": "889,912",
- "Deaths": "512,481",
- "Birth Rates": "1438.3",
- "Death Rates": "828.3",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Medium Metro",
- "Births": "902,078",
- "Deaths": "514,363",
- "Birth Rates": "1440.5",
- "Death Rates": "821.4",
- "B /D Ratio": "1.75",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Medium Metro",
- "Births": "887,630",
- "Deaths": "525,867",
- "Birth Rates": "1402.4",
- "Death Rates": "830.8",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Medium Metro",
- "Births": "866,938",
- "Deaths": "519,643",
- "Birth Rates": "1356.7",
- "Death Rates": "813.2",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Medium Metro",
- "Births": "841,737",
- "Deaths": "529,575",
- "Birth Rates": "1307.7",
- "Death Rates": "822.7",
- "B /D Ratio": "1.59",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Medium Metro",
- "Births": "834,518",
- "Deaths": "539,214",
- "Birth Rates": "1283.9",
- "Death Rates": "829.6",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Medium Metro",
- "Births": "834,537",
- "Deaths": "549,033",
- "Birth Rates": "1274.6",
- "Death Rates": "838.6",
- "B /D Ratio": "1.52",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Medium Metro",
- "Births": "828,917",
- "Deaths": "561,528",
- "Birth Rates": "1257.2",
- "Death Rates": "851.7",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Medium Metro",
- "Births": "838,365",
- "Deaths": "571,318",
- "Birth Rates": "1261.3",
- "Death Rates": "859.6",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Medium Metro",
- "Births": "834,040",
- "Deaths": "590,476",
- "Birth Rates": "1244.1",
- "Death Rates": "880.8",
- "B /D Ratio": "1.41",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Medium Metro",
- "Births": "826,615",
- "Deaths": "597,343",
- "Birth Rates": "1224.4",
- "Death Rates": "884.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Medium Metro",
- "Births": "806,341",
- "Deaths": "614,726",
- "Birth Rates": "1184.8",
- "Death Rates": "903.3",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Medium Metro",
- "Births": "795,095",
- "Deaths": "620,692",
- "Birth Rates": "1160.8",
- "Death Rates": "906.2",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Medium Metro",
- "Births": "791,431",
- "Deaths": "625,611",
- "Birth Rates": "1149.6",
- "Death Rates": "908.8",
- "B /D Ratio": "1.27",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Medium Metro",
- "Births": "767,809",
- "Deaths": "732,749",
- "Birth Rates": "1104.7",
- "Death Rates": "1054.2",
- "B /D Ratio": "1.05",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Medium Metro",
- "Births": "782,575",
- "Deaths": "764,696",
- "Birth Rates": "1118.0",
- "Death Rates": "1092.5",
- "B /D Ratio": "1.02",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Medium Metro",
- "Births": "785,215",
- "Deaths": "727,564",
- "Birth Rates": "1113.2",
- "Death Rates": "1031.5",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Small Metro",
- "Births": "352,340",
- "Deaths": "237,415",
- "Birth Rates": "1353.7",
- "Death Rates": "912.2",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Small Metro",
- "Births": "347,935",
- "Deaths": "238,793",
- "Birth Rates": "1327.4",
- "Death Rates": "911.0",
- "B /D Ratio": "1.46",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Small Metro",
- "Births": "349,015",
- "Deaths": "241,337",
- "Birth Rates": "1319.4",
- "Death Rates": "912.4",
- "B /D Ratio": "1.45",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Small Metro",
- "Births": "356,068",
- "Deaths": "244,999",
- "Birth Rates": "1334.4",
- "Death Rates": "918.2",
- "B /D Ratio": "1.45",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Small Metro",
- "Births": "360,101",
- "Deaths": "239,400",
- "Birth Rates": "1334.6",
- "Death Rates": "887.3",
- "B /D Ratio": "1.50",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Small Metro",
- "Births": "364,781",
- "Deaths": "246,840",
- "Birth Rates": "1337.9",
- "Death Rates": "905.4",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Small Metro",
- "Births": "377,871",
- "Deaths": "245,828",
- "Birth Rates": "1368.1",
- "Death Rates": "890.0",
- "B /D Ratio": "1.54",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Small Metro",
- "Births": "386,290",
- "Deaths": "245,914",
- "Birth Rates": "1384.1",
- "Death Rates": "881.1",
- "B /D Ratio": "1.57",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Small Metro",
- "Births": "380,506",
- "Deaths": "251,650",
- "Birth Rates": "1350.5",
- "Death Rates": "893.2",
- "B /D Ratio": "1.51",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Small Metro",
- "Births": "370,792",
- "Deaths": "250,195",
- "Birth Rates": "1305.1",
- "Death Rates": "880.6",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Small Metro",
- "Births": "362,131",
- "Deaths": "253,642",
- "Birth Rates": "1267.5",
- "Death Rates": "887.8",
- "B /D Ratio": "1.43",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Small Metro",
- "Births": "357,401",
- "Deaths": "259,433",
- "Birth Rates": "1242.4",
- "Death Rates": "901.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Small Metro",
- "Births": "357,913",
- "Deaths": "261,996",
- "Birth Rates": "1238.1",
- "Death Rates": "906.3",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Small Metro",
- "Births": "355,211",
- "Deaths": "268,092",
- "Birth Rates": "1223.3",
- "Death Rates": "923.3",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Small Metro",
- "Births": "359,775",
- "Deaths": "271,460",
- "Birth Rates": "1231.9",
- "Death Rates": "929.5",
- "B /D Ratio": "1.33",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Small Metro",
- "Births": "358,756",
- "Deaths": "281,098",
- "Birth Rates": "1222.5",
- "Death Rates": "957.9",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Small Metro",
- "Births": "352,937",
- "Deaths": "283,500",
- "Birth Rates": "1197.8",
- "Death Rates": "962.2",
- "B /D Ratio": "1.24",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Small Metro",
- "Births": "345,053",
- "Deaths": "291,275",
- "Birth Rates": "1165.0",
- "Death Rates": "983.5",
- "B /D Ratio": "1.18",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Small Metro",
- "Births": "340,600",
- "Deaths": "295,592",
- "Birth Rates": "1143.5",
- "Death Rates": "992.4",
- "B /D Ratio": "1.15",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Small Metro",
- "Births": "335,248",
- "Deaths": "296,445",
- "Birth Rates": "1123.0",
- "Death Rates": "993.0",
- "B /D Ratio": "1.13",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Small Metro",
- "Births": "325,326",
- "Deaths": "345,276",
- "Birth Rates": "1082.8",
- "Death Rates": "1149.2",
- "B /D Ratio": "0.94",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Small Metro",
- "Births": "329,862",
- "Deaths": "362,409",
- "Birth Rates": "1092.6",
- "Death Rates": "1200.4",
- "B /D Ratio": "0.91",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Small Metro",
- "Births": "327,514",
- "Deaths": "342,357",
- "Birth Rates": "1079.0",
- "Death Rates": "1127.9",
- "B /D Ratio": "0.96",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Micropolitan",
- "Births": "342,252",
- "Deaths": "258,629",
- "Birth Rates": "1319.7",
- "Death Rates": "997.3",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Micropolitan",
- "Births": "336,820",
- "Deaths": "258,732",
- "Birth Rates": "1295.7",
- "Death Rates": "995.3",
- "B /D Ratio": "1.30",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Micropolitan",
- "Births": "333,606",
- "Deaths": "262,513",
- "Birth Rates": "1278.4",
- "Death Rates": "1006.0",
- "B /D Ratio": "1.27",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Micropolitan",
- "Births": "336,792",
- "Deaths": "263,106",
- "Birth Rates": "1285.0",
- "Death Rates": "1003.8",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Micropolitan",
- "Births": "339,815",
- "Deaths": "257,118",
- "Birth Rates": "1289.6",
- "Death Rates": "975.8",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Micropolitan",
- "Births": "343,630",
- "Deaths": "263,134",
- "Birth Rates": "1297.3",
- "Death Rates": "993.4",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Micropolitan",
- "Births": "355,116",
- "Deaths": "261,280",
- "Birth Rates": "1330.8",
- "Death Rates": "979.1",
- "B /D Ratio": "1.36",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Micropolitan",
- "Births": "358,997",
- "Deaths": "261,596",
- "Birth Rates": "1337.8",
- "Death Rates": "974.8",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Micropolitan",
- "Births": "354,647",
- "Deaths": "268,498",
- "Birth Rates": "1314.8",
- "Death Rates": "995.4",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Micropolitan",
- "Births": "344,733",
- "Deaths": "263,249",
- "Birth Rates": "1273.2",
- "Death Rates": "972.3",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Micropolitan",
- "Births": "330,937",
- "Deaths": "266,780",
- "Birth Rates": "1218.7",
- "Death Rates": "982.5",
- "B /D Ratio": "1.24",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Micropolitan",
- "Births": "326,245",
- "Deaths": "271,867",
- "Birth Rates": "1198.8",
- "Death Rates": "999.0",
- "B /D Ratio": "1.20",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Micropolitan",
- "Births": "325,640",
- "Deaths": "273,597",
- "Birth Rates": "1196.5",
- "Death Rates": "1005.3",
- "B /D Ratio": "1.19",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Micropolitan",
- "Births": "324,326",
- "Deaths": "279,386",
- "Birth Rates": "1191.5",
- "Death Rates": "1026.4",
- "B /D Ratio": "1.16",
- "": " "
- },
- {
- "Year": "2014",
- "RU": "Micropolitan",
- "Births": "326,585",
- "Deaths": "280,191",
- "Birth Rates": "1198.8",
- "Death Rates": "1028.5",
- "B /D Ratio": "1.17",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Micropolitan",
- "Births": "325,395",
- "Deaths": "289,758",
- "Birth Rates": "1193.6",
- "Death Rates": "1062.9",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Micropolitan",
- "Births": "320,494",
- "Deaths": "290,565",
- "Birth Rates": "1175.8",
- "Death Rates": "1066.0",
- "B /D Ratio": "1.10",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Micropolitan",
- "Births": "314,128",
- "Deaths": "297,517",
- "Birth Rates": "1152.3",
- "Death Rates": "1091.4",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Micropolitan",
- "Births": "308,073",
- "Deaths": "299,711",
- "Birth Rates": "1128.9",
- "Death Rates": "1098.2",
- "B /D Ratio": "1.03",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Micropolitan",
- "Births": "304,246",
- "Deaths": "302,347",
- "Birth Rates": "1114.7",
- "Death Rates": "1107.7",
- "B /D Ratio": "1.01",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Micropolitan",
- "Births": "295,324",
- "Deaths": "350,667",
- "Birth Rates": "1077.8",
- "Death Rates": "1279.7",
- "B /D Ratio": "0.84",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Micropolitan",
- "Births": "298,356",
- "Deaths": "369,077",
- "Birth Rates": "1086.9",
- "Death Rates": "1344.6",
- "B /D Ratio": "0.81",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Micropolitan",
- "Births": "294,843",
- "Deaths": "345,832",
- "Birth Rates": "1073.5",
- "Death Rates": "1259.2",
- "B /D Ratio": "0.85",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "NonCore",
- "Births": "233,133",
- "Deaths": "213,563",
- "Birth Rates": "1235.6",
- "Death Rates": "1131.9",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "NonCore",
- "Births": "228,433",
- "Deaths": "211,996",
- "Birth Rates": "1212.1",
- "Death Rates": "1124.9",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "NonCore",
- "Births": "225,733",
- "Deaths": "215,981",
- "Birth Rates": "1196.7",
- "Death Rates": "1145.0",
- "B /D Ratio": "1.05",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "NonCore",
- "Births": "228,346",
- "Deaths": "214,734",
- "Birth Rates": "1207.9",
- "Death Rates": "1135.9",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "NonCore",
- "Births": "228,657",
- "Deaths": "208,090",
- "Birth Rates": "1207.0",
- "Death Rates": "1098.4",
- "B /D Ratio": "1.10",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "NonCore",
- "Births": "231,038",
- "Deaths": "212,617",
- "Birth Rates": "1216.8",
- "Death Rates": "1119.8",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "NonCore",
- "Births": "237,129",
- "Deaths": "208,651",
- "Birth Rates": "1244.6",
- "Death Rates": "1095.1",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "NonCore",
- "Births": "239,198",
- "Deaths": "209,930",
- "Birth Rates": "1252.7",
- "Death Rates": "1099.4",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "NonCore",
- "Births": "234,616",
- "Deaths": "214,718",
- "Birth Rates": "1226.8",
- "Death Rates": "1122.8",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "NonCore",
- "Births": "226,889",
- "Deaths": "210,185",
- "Birth Rates": "1186.5",
- "Death Rates": "1099.2",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "NonCore",
- "Births": "219,160",
- "Deaths": "212,556",
- "Birth Rates": "1145.1",
- "Death Rates": "1110.6",
- "B /D Ratio": "1.03",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "NonCore",
- "Births": "215,675",
- "Deaths": "214,778",
- "Birth Rates": "1128.8",
- "Death Rates": "1124.1",
- "B /D Ratio": "1.00",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "NonCore",
- "Births": "214,757",
- "Deaths": "215,687",
- "Birth Rates": "1128.3",
- "Death Rates": "1133.2",
- "B /D Ratio": "1.00",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "NonCore",
- "Births": "215,012",
- "Deaths": "219,035",
- "Birth Rates": "1131.8",
- "Death Rates": "1153.0",
- "B /D Ratio": "0.98",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "NonCore",
- "Births": "214,209",
- "Deaths": "220,803",
- "Birth Rates": "1130.6",
- "Death Rates": "1165.4",
- "B /D Ratio": "0.97",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "NonCore",
- "Births": "214,516",
- "Deaths": "226,761",
- "Birth Rates": "1134.6",
- "Death Rates": "1199.4",
- "B /D Ratio": "0.95",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "NonCore",
- "Births": "212,093",
- "Deaths": "226,412",
- "Birth Rates": "1125.0",
- "Death Rates": "1201.0",
- "B /D Ratio": "0.94",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "NonCore",
- "Births": "206,680",
- "Deaths": "230,523",
- "Birth Rates": "1098.1",
- "Death Rates": "1224.8",
- "B /D Ratio": "0.90",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "NonCore",
- "Births": "205,049",
- "Deaths": "231,229",
- "Birth Rates": "1090.1",
- "Death Rates": "1229.3",
- "B /D Ratio": "0.89",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "NonCore",
- "Births": "202,098",
- "Deaths": "232,260",
- "Birth Rates": "1076.8",
- "Death Rates": "1237.5",
- "B /D Ratio": "0.87",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "NonCore",
- "Births": "195,119",
- "Deaths": "269,509",
- "Birth Rates": "1048.8",
- "Death Rates": "1448.7",
- "B /D Ratio": "0.72",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "NonCore",
- "Births": "198,109",
- "Deaths": "284,760",
- "Birth Rates": "1063.8",
- "Death Rates": "1529.0",
- "B /D Ratio": "0.70",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "NonCore",
- "Births": "196,182",
- "Deaths": "265,752",
- "Birth Rates": "1052.4",
- "Death Rates": "1425.6",
- "B /D Ratio": "0.74",
- "": ""
- }
- ],
- "data": [
- {
- "Year": "2000",
- "RU": "All US",
- "Births": "4,026,508",
- "Deaths": "2,384,811",
- "Birth Rates": "1430.8",
- "Death Rates": "847.4",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "All US",
- "Births": "3,993,509",
- "Deaths": "2,397,376",
- "Birth Rates": "1401.4",
- "Death Rates": "841.3",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "All US",
- "Births": "3,989,601",
- "Deaths": "2,425,210",
- "Birth Rates": "1387.1",
- "Death Rates": "843.2",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "All US",
- "Births": "4,089,950",
- "Deaths": "2,448,288",
- "Birth Rates": "1409.8",
- "Death Rates": "843.9",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "All US",
- "Births": "4,112,052",
- "Deaths": "2,397,615",
- "Birth Rates": "1404.4",
- "Death Rates": "818.8",
- "B /D Ratio": "1.72",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "All US",
- "Births": "4,138,349",
- "Deaths": "2,448,017",
- "Birth Rates": "1400.4",
- "Death Rates": "828.4",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "All US",
- "Births": "4,265,555",
- "Deaths": "2,426,264",
- "Birth Rates": "1429.6",
- "Death Rates": "813.1",
- "B /D Ratio": "1.76",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "All US",
- "Births": "4,316,233",
- "Deaths": "2,423,712",
- "Birth Rates": "1432.9",
- "Death Rates": "804.6",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "All US",
- "Births": "4,247,694",
- "Deaths": "2,469,982",
- "Birth Rates": "1396.8",
- "Death Rates": "812.2",
- "B /D Ratio": "1.72",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "All US",
- "Births": "4,130,665",
- "Deaths": "2,437,163",
- "Birth Rates": "1346.5",
- "Death Rates": "794.5",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "All US",
- "Births": "3,999,386",
- "Deaths": "2,468,435",
- "Birth Rates": "1295.4",
- "Death Rates": "799.5",
- "B /D Ratio": "1.62",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "All US",
- "Births": "3,953,590",
- "Deaths": "2,515,458",
- "Birth Rates": "1268.8",
- "Death Rates": "807.3",
- "B /D Ratio": "1.57",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "All US",
- "Births": "3,952,841",
- "Deaths": "2,543,273",
- "Birth Rates": "1259.2",
- "Death Rates": "810.2",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "All US",
- "Births": "3,932,181",
- "Deaths": "2,596,993",
- "Birth Rates": "1243.9",
- "Death Rates": "821.5",
- "B /D Ratio": "1.51",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "All US",
- "Births": "3,988,076",
- "Deaths": "2,626,354",
- "Birth Rates": "1250.7",
- "Death Rates": "823.7",
- "B /D Ratio": "1.52",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "All US",
- "Births": "3,978,497",
- "Deaths": "2,712,630",
- "Birth Rates": "1237.8",
- "Death Rates": "844.0",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "All US",
- "Births": "3,945,875",
- "Deaths": "2,744,251",
- "Birth Rates": "1221.2",
- "Death Rates": "849.3",
- "B /D Ratio": "1.44",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "All US",
- "Births": "3,855,500",
- "Deaths": "2,813,503",
- "Birth Rates": "1183.7",
- "Death Rates": "863.8",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "All US",
- "Births": "3,791,712",
- "Deaths": "2,839,205",
- "Birth Rates": "1159.0",
- "Death Rates": "867.8",
- "B /D Ratio": "1.34",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "All US",
- "Births": "3,747,540",
- "Deaths": "2,854,768",
- "Birth Rates": "1141.7",
- "Death Rates": "869.7",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "All US",
- "Births": "3,613,647",
- "Deaths": "3,383,729",
- "Birth Rates": "1090.3",
- "Death Rates": "1020.9",
- "B /D Ratio": "1.07",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "All US",
- "Births": "3,664,292",
- "Deaths": "3,464,231",
- "Birth Rates": "1104.1",
- "Death Rates": "1043.8",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "All US",
- "Births": "3,667,758",
- "Deaths": "3,279,857",
- "Birth Rates": "1100.5",
- "Death Rates": "984.1",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Large Central Metro",
- "Births": "1,332,025",
- "Deaths": "663,069",
- "Birth Rates": "1519.4",
- "Death Rates": "756.3",
- "B /D Ratio": "2.01",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Large Central Metro",
- "Births": "1,319,997",
- "Deaths": "682,118",
- "Birth Rates": "1505.7",
- "Death Rates": "778.1",
- "B /D Ratio": "1.94",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Large Central Metro",
- "Births": "1,314,717",
- "Deaths": "661,190",
- "Birth Rates": "1489.5",
- "Death Rates": "749.1",
- "B /D Ratio": "1.99",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Large Central Metro",
- "Births": "1,366,716",
- "Deaths": "676,267",
- "Birth Rates": "1539.8",
- "Death Rates": "761.9",
- "B /D Ratio": "2.02",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Large Central Metro",
- "Births": "1,369,193",
- "Deaths": "661,678",
- "Birth Rates": "1534.2",
- "Death Rates": "741.4",
- "B /D Ratio": "2.07",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Large Central Metro",
- "Births": "1,327,275",
- "Deaths": "669,828",
- "Birth Rates": "1478.7",
- "Death Rates": "746.2",
- "B /D Ratio": "1.98",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Large Central Metro",
- "Births": "1,409,923",
- "Deaths": "659,457",
- "Birth Rates": "1562.8",
- "Death Rates": "731.0",
- "B /D Ratio": "2.14",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Large Central Metro",
- "Births": "1,427,166",
- "Deaths": "651,711",
- "Birth Rates": "1569.4",
- "Death Rates": "716.7",
- "B /D Ratio": "2.19",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Large Central Metro",
- "Births": "1,405,625",
- "Deaths": "658,247",
- "Birth Rates": "1530.7",
- "Death Rates": "716.8",
- "B /D Ratio": "2.14",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Large Central Metro",
- "Births": "1,366,583",
- "Deaths": "645,702",
- "Birth Rates": "1472.3",
- "Death Rates": "695.7",
- "B /D Ratio": "2.12",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Large Central Metro",
- "Births": "1,317,897",
- "Deaths": "647,992",
- "Birth Rates": "1409.4",
- "Death Rates": "693.0",
- "B /D Ratio": "2.03",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Large Central Metro",
- "Births": "1,303,238",
- "Deaths": "659,543",
- "Birth Rates": "1376.2",
- "Death Rates": "696.5",
- "B /D Ratio": "1.98",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Large Central Metro",
- "Births": "1,308,280",
- "Deaths": "665,753",
- "Birth Rates": "1365.7",
- "Death Rates": "695.0",
- "B /D Ratio": "1.97",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Large Central Metro",
- "Births": "1,298,265",
- "Deaths": "678,706",
- "Birth Rates": "1342.0",
- "Death Rates": "701.6",
- "B /D Ratio": "1.91",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Large Central Metro",
- "Births": "1,320,038",
- "Deaths": "681,997",
- "Birth Rates": "1347.9",
- "Death Rates": "696.4",
- "B /D Ratio": "1.94",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Large Central Metro",
- "Births": "1,314,482",
- "Deaths": "702,374",
- "Birth Rates": "1327.8",
- "Death Rates": "709.5",
- "B /D Ratio": "1.87",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Large Central Metro",
- "Births": "1,302,809",
- "Deaths": "713,257",
- "Birth Rates": "1308.8",
- "Death Rates": "716.5",
- "B /D Ratio": "1.83",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Large Central Metro",
- "Births": "1,267,194",
- "Deaths": "727,181",
- "Birth Rates": "1259.6",
- "Death Rates": "722.8",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Large Central Metro",
- "Births": "1,234,725",
- "Deaths": "732,433",
- "Birth Rates": "1224.3",
- "Death Rates": "726.3",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Large Central Metro",
- "Births": "1,213,151",
- "Deaths": "733,320",
- "Birth Rates": "1201.1",
- "Death Rates": "726.0",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Large Central Metro",
- "Births": "1,154,502",
- "Deaths": "901,419",
- "Birth Rates": "1131.5",
- "Death Rates": "883.4",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Large Central Metro",
- "Births": "1,149,090",
- "Deaths": "891,760",
- "Birth Rates": "1136.2",
- "Death Rates": "881.8",
- "B /D Ratio": "1.29",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Large Central Metro",
- "Births": "1,151,010",
- "Deaths": "837,005",
- "Birth Rates": "1138.4",
- "Death Rates": "827.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Large Fringe Metro",
- "Births": "939,455",
- "Deaths": "520,441",
- "Birth Rates": "1403.6",
- "Death Rates": "777.5",
- "B /D Ratio": "1.81",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Large Fringe Metro",
- "Births": "939,058",
- "Deaths": "527,266",
- "Birth Rates": "1380.3",
- "Death Rates": "775.0",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Large Fringe Metro",
- "Births": "943,471",
- "Deaths": "537,194",
- "Birth Rates": "1365.9",
- "Death Rates": "777.7",
- "B /D Ratio": "1.76",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Large Fringe Metro",
- "Births": "963,343",
- "Deaths": "538,524",
- "Birth Rates": "1375.6",
- "Death Rates": "769.0",
- "B /D Ratio": "1.79",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Large Fringe Metro",
- "Births": "967,432",
- "Deaths": "530,580",
- "Birth Rates": "1362.1",
- "Death Rates": "747.1",
- "B /D Ratio": "1.82",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Large Fringe Metro",
- "Births": "965,589",
- "Deaths": "540,777",
- "Birth Rates": "1341.3",
- "Death Rates": "751.2",
- "B /D Ratio": "1.79",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Large Fringe Metro",
- "Births": "995,604",
- "Deaths": "538,567",
- "Birth Rates": "1365.2",
- "Death Rates": "738.5",
- "B /D Ratio": "1.85",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Large Fringe Metro",
- "Births": "1,002,504",
- "Deaths": "540,198",
- "Birth Rates": "1357.8",
- "Death Rates": "731.6",
- "B /D Ratio": "1.86",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Large Fringe Metro",
- "Births": "984,670",
- "Deaths": "553,004",
- "Birth Rates": "1318.2",
- "Death Rates": "740.3",
- "B /D Ratio": "1.78",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Large Fringe Metro",
- "Births": "954,730",
- "Deaths": "548,189",
- "Birth Rates": "1265.5",
- "Death Rates": "726.6",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Large Fringe Metro",
- "Births": "927,524",
- "Deaths": "557,890",
- "Birth Rates": "1220.3",
- "Death Rates": "734.0",
- "B /D Ratio": "1.66",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Large Fringe Metro",
- "Births": "916,513",
- "Deaths": "570,623",
- "Birth Rates": "1193.3",
- "Death Rates": "742.9",
- "B /D Ratio": "1.61",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Large Fringe Metro",
- "Births": "911,714",
- "Deaths": "577,213",
- "Birth Rates": "1176.6",
- "Death Rates": "744.9",
- "B /D Ratio": "1.58",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Large Fringe Metro",
- "Births": "910,450",
- "Deaths": "590,246",
- "Birth Rates": "1164.2",
- "Death Rates": "754.8",
- "B /D Ratio": "1.54",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Large Fringe Metro",
- "Births": "929,104",
- "Deaths": "600,649",
- "Birth Rates": "1175.1",
- "Death Rates": "759.7",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Large Fringe Metro",
- "Births": "931,308",
- "Deaths": "622,163",
- "Birth Rates": "1166.1",
- "Death Rates": "779.0",
- "B /D Ratio": "1.50",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Large Fringe Metro",
- "Births": "930,927",
- "Deaths": "633,171",
- "Birth Rates": "1156.5",
- "Death Rates": "786.6",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Large Fringe Metro",
- "Births": "916,104",
- "Deaths": "652,281",
- "Birth Rates": "1126.0",
- "Death Rates": "801.7",
- "B /D Ratio": "1.40",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Large Fringe Metro",
- "Births": "908,170",
- "Deaths": "659,548",
- "Birth Rates": "1108.3",
- "Death Rates": "804.9",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Large Fringe Metro",
- "Births": "901,366",
- "Deaths": "664,855",
- "Birth Rates": "1092.9",
- "Death Rates": "806.1",
- "B /D Ratio": "1.36",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Large Fringe Metro",
- "Births": "875,567",
- "Deaths": "784,109",
- "Birth Rates": "1044.1",
- "Death Rates": "935.1",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Large Fringe Metro",
- "Births": "906,300",
- "Deaths": "791,529",
- "Birth Rates": "1072.6",
- "Death Rates": "936.8",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Large Fringe Metro",
- "Births": "912,993",
- "Deaths": "761,347",
- "Birth Rates": "1071.8",
- "Death Rates": "893.8",
- "B /D Ratio": "1.20",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Medium Metro",
- "Births": "827,303",
- "Deaths": "494,966",
- "Birth Rates": "1436.6",
- "Death Rates": "859.5",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Medium Metro",
- "Births": "821,266",
- "Deaths": "497,520",
- "Birth Rates": "1410.8",
- "Death Rates": "854.6",
- "B /D Ratio": "1.65",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Medium Metro",
- "Births": "823,059",
- "Deaths": "506,995",
- "Birth Rates": "1398.0",
- "Death Rates": "861.1",
- "B /D Ratio": "1.62",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Medium Metro",
- "Births": "838,685",
- "Deaths": "510,658",
- "Birth Rates": "1409.1",
- "Death Rates": "858.0",
- "B /D Ratio": "1.64",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Medium Metro",
- "Births": "846,854",
- "Deaths": "500,749",
- "Birth Rates": "1405.3",
- "Death Rates": "830.9",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Medium Metro",
- "Births": "828,435",
- "Deaths": "514,821",
- "Birth Rates": "1357.6",
- "Death Rates": "843.6",
- "B /D Ratio": "1.61",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Medium Metro",
- "Births": "889,912",
- "Deaths": "512,481",
- "Birth Rates": "1438.3",
- "Death Rates": "828.3",
- "B /D Ratio": "1.74",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Medium Metro",
- "Births": "902,078",
- "Deaths": "514,363",
- "Birth Rates": "1440.5",
- "Death Rates": "821.4",
- "B /D Ratio": "1.75",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Medium Metro",
- "Births": "887,630",
- "Deaths": "525,867",
- "Birth Rates": "1402.4",
- "Death Rates": "830.8",
- "B /D Ratio": "1.69",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Medium Metro",
- "Births": "866,938",
- "Deaths": "519,643",
- "Birth Rates": "1356.7",
- "Death Rates": "813.2",
- "B /D Ratio": "1.67",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Medium Metro",
- "Births": "841,737",
- "Deaths": "529,575",
- "Birth Rates": "1307.7",
- "Death Rates": "822.7",
- "B /D Ratio": "1.59",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Medium Metro",
- "Births": "834,518",
- "Deaths": "539,214",
- "Birth Rates": "1283.9",
- "Death Rates": "829.6",
- "B /D Ratio": "1.55",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Medium Metro",
- "Births": "834,537",
- "Deaths": "549,033",
- "Birth Rates": "1274.6",
- "Death Rates": "838.6",
- "B /D Ratio": "1.52",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Medium Metro",
- "Births": "828,917",
- "Deaths": "561,528",
- "Birth Rates": "1257.2",
- "Death Rates": "851.7",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Medium Metro",
- "Births": "838,365",
- "Deaths": "571,318",
- "Birth Rates": "1261.3",
- "Death Rates": "859.6",
- "B /D Ratio": "1.47",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Medium Metro",
- "Births": "834,040",
- "Deaths": "590,476",
- "Birth Rates": "1244.1",
- "Death Rates": "880.8",
- "B /D Ratio": "1.41",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Medium Metro",
- "Births": "826,615",
- "Deaths": "597,343",
- "Birth Rates": "1224.4",
- "Death Rates": "884.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Medium Metro",
- "Births": "806,341",
- "Deaths": "614,726",
- "Birth Rates": "1184.8",
- "Death Rates": "903.3",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Medium Metro",
- "Births": "795,095",
- "Deaths": "620,692",
- "Birth Rates": "1160.8",
- "Death Rates": "906.2",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Medium Metro",
- "Births": "791,431",
- "Deaths": "625,611",
- "Birth Rates": "1149.6",
- "Death Rates": "908.8",
- "B /D Ratio": "1.27",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Medium Metro",
- "Births": "767,809",
- "Deaths": "732,749",
- "Birth Rates": "1104.7",
- "Death Rates": "1054.2",
- "B /D Ratio": "1.05",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Medium Metro",
- "Births": "782,575",
- "Deaths": "764,696",
- "Birth Rates": "1118.0",
- "Death Rates": "1092.5",
- "B /D Ratio": "1.02",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Medium Metro",
- "Births": "785,215",
- "Deaths": "727,564",
- "Birth Rates": "1113.2",
- "Death Rates": "1031.5",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Small Metro",
- "Births": "352,340",
- "Deaths": "237,415",
- "Birth Rates": "1353.7",
- "Death Rates": "912.2",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Small Metro",
- "Births": "347,935",
- "Deaths": "238,793",
- "Birth Rates": "1327.4",
- "Death Rates": "911.0",
- "B /D Ratio": "1.46",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Small Metro",
- "Births": "349,015",
- "Deaths": "241,337",
- "Birth Rates": "1319.4",
- "Death Rates": "912.4",
- "B /D Ratio": "1.45",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Small Metro",
- "Births": "356,068",
- "Deaths": "244,999",
- "Birth Rates": "1334.4",
- "Death Rates": "918.2",
- "B /D Ratio": "1.45",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Small Metro",
- "Births": "360,101",
- "Deaths": "239,400",
- "Birth Rates": "1334.6",
- "Death Rates": "887.3",
- "B /D Ratio": "1.50",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Small Metro",
- "Births": "364,781",
- "Deaths": "246,840",
- "Birth Rates": "1337.9",
- "Death Rates": "905.4",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Small Metro",
- "Births": "377,871",
- "Deaths": "245,828",
- "Birth Rates": "1368.1",
- "Death Rates": "890.0",
- "B /D Ratio": "1.54",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Small Metro",
- "Births": "386,290",
- "Deaths": "245,914",
- "Birth Rates": "1384.1",
- "Death Rates": "881.1",
- "B /D Ratio": "1.57",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Small Metro",
- "Births": "380,506",
- "Deaths": "251,650",
- "Birth Rates": "1350.5",
- "Death Rates": "893.2",
- "B /D Ratio": "1.51",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Small Metro",
- "Births": "370,792",
- "Deaths": "250,195",
- "Birth Rates": "1305.1",
- "Death Rates": "880.6",
- "B /D Ratio": "1.48",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Small Metro",
- "Births": "362,131",
- "Deaths": "253,642",
- "Birth Rates": "1267.5",
- "Death Rates": "887.8",
- "B /D Ratio": "1.43",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Small Metro",
- "Births": "357,401",
- "Deaths": "259,433",
- "Birth Rates": "1242.4",
- "Death Rates": "901.8",
- "B /D Ratio": "1.38",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Small Metro",
- "Births": "357,913",
- "Deaths": "261,996",
- "Birth Rates": "1238.1",
- "Death Rates": "906.3",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Small Metro",
- "Births": "355,211",
- "Deaths": "268,092",
- "Birth Rates": "1223.3",
- "Death Rates": "923.3",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "Small Metro",
- "Births": "359,775",
- "Deaths": "271,460",
- "Birth Rates": "1231.9",
- "Death Rates": "929.5",
- "B /D Ratio": "1.33",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Small Metro",
- "Births": "358,756",
- "Deaths": "281,098",
- "Birth Rates": "1222.5",
- "Death Rates": "957.9",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Small Metro",
- "Births": "352,937",
- "Deaths": "283,500",
- "Birth Rates": "1197.8",
- "Death Rates": "962.2",
- "B /D Ratio": "1.24",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Small Metro",
- "Births": "345,053",
- "Deaths": "291,275",
- "Birth Rates": "1165.0",
- "Death Rates": "983.5",
- "B /D Ratio": "1.18",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Small Metro",
- "Births": "340,600",
- "Deaths": "295,592",
- "Birth Rates": "1143.5",
- "Death Rates": "992.4",
- "B /D Ratio": "1.15",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Small Metro",
- "Births": "335,248",
- "Deaths": "296,445",
- "Birth Rates": "1123.0",
- "Death Rates": "993.0",
- "B /D Ratio": "1.13",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Small Metro",
- "Births": "325,326",
- "Deaths": "345,276",
- "Birth Rates": "1082.8",
- "Death Rates": "1149.2",
- "B /D Ratio": "0.94",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Small Metro",
- "Births": "329,862",
- "Deaths": "362,409",
- "Birth Rates": "1092.6",
- "Death Rates": "1200.4",
- "B /D Ratio": "0.91",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Small Metro",
- "Births": "327,514",
- "Deaths": "342,357",
- "Birth Rates": "1079.0",
- "Death Rates": "1127.9",
- "B /D Ratio": "0.96",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "Micropolitan",
- "Births": "342,252",
- "Deaths": "258,629",
- "Birth Rates": "1319.7",
- "Death Rates": "997.3",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "Micropolitan",
- "Births": "336,820",
- "Deaths": "258,732",
- "Birth Rates": "1295.7",
- "Death Rates": "995.3",
- "B /D Ratio": "1.30",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "Micropolitan",
- "Births": "333,606",
- "Deaths": "262,513",
- "Birth Rates": "1278.4",
- "Death Rates": "1006.0",
- "B /D Ratio": "1.27",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "Micropolitan",
- "Births": "336,792",
- "Deaths": "263,106",
- "Birth Rates": "1285.0",
- "Death Rates": "1003.8",
- "B /D Ratio": "1.28",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "Micropolitan",
- "Births": "339,815",
- "Deaths": "257,118",
- "Birth Rates": "1289.6",
- "Death Rates": "975.8",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "Micropolitan",
- "Births": "343,630",
- "Deaths": "263,134",
- "Birth Rates": "1297.3",
- "Death Rates": "993.4",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "Micropolitan",
- "Births": "355,116",
- "Deaths": "261,280",
- "Birth Rates": "1330.8",
- "Death Rates": "979.1",
- "B /D Ratio": "1.36",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "Micropolitan",
- "Births": "358,997",
- "Deaths": "261,596",
- "Birth Rates": "1337.8",
- "Death Rates": "974.8",
- "B /D Ratio": "1.37",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "Micropolitan",
- "Births": "354,647",
- "Deaths": "268,498",
- "Birth Rates": "1314.8",
- "Death Rates": "995.4",
- "B /D Ratio": "1.32",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "Micropolitan",
- "Births": "344,733",
- "Deaths": "263,249",
- "Birth Rates": "1273.2",
- "Death Rates": "972.3",
- "B /D Ratio": "1.31",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "Micropolitan",
- "Births": "330,937",
- "Deaths": "266,780",
- "Birth Rates": "1218.7",
- "Death Rates": "982.5",
- "B /D Ratio": "1.24",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "Micropolitan",
- "Births": "326,245",
- "Deaths": "271,867",
- "Birth Rates": "1198.8",
- "Death Rates": "999.0",
- "B /D Ratio": "1.20",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "Micropolitan",
- "Births": "325,640",
- "Deaths": "273,597",
- "Birth Rates": "1196.5",
- "Death Rates": "1005.3",
- "B /D Ratio": "1.19",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "Micropolitan",
- "Births": "324,326",
- "Deaths": "279,386",
- "Birth Rates": "1191.5",
- "Death Rates": "1026.4",
- "B /D Ratio": "1.16",
- "": " "
- },
- {
- "Year": "2014",
- "RU": "Micropolitan",
- "Births": "326,585",
- "Deaths": "280,191",
- "Birth Rates": "1198.8",
- "Death Rates": "1028.5",
- "B /D Ratio": "1.17",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "Micropolitan",
- "Births": "325,395",
- "Deaths": "289,758",
- "Birth Rates": "1193.6",
- "Death Rates": "1062.9",
- "B /D Ratio": "1.12",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "Micropolitan",
- "Births": "320,494",
- "Deaths": "290,565",
- "Birth Rates": "1175.8",
- "Death Rates": "1066.0",
- "B /D Ratio": "1.10",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "Micropolitan",
- "Births": "314,128",
- "Deaths": "297,517",
- "Birth Rates": "1152.3",
- "Death Rates": "1091.4",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "Micropolitan",
- "Births": "308,073",
- "Deaths": "299,711",
- "Birth Rates": "1128.9",
- "Death Rates": "1098.2",
- "B /D Ratio": "1.03",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "Micropolitan",
- "Births": "304,246",
- "Deaths": "302,347",
- "Birth Rates": "1114.7",
- "Death Rates": "1107.7",
- "B /D Ratio": "1.01",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "Micropolitan",
- "Births": "295,324",
- "Deaths": "350,667",
- "Birth Rates": "1077.8",
- "Death Rates": "1279.7",
- "B /D Ratio": "0.84",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "Micropolitan",
- "Births": "298,356",
- "Deaths": "369,077",
- "Birth Rates": "1086.9",
- "Death Rates": "1344.6",
- "B /D Ratio": "0.81",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "Micropolitan",
- "Births": "294,843",
- "Deaths": "345,832",
- "Birth Rates": "1073.5",
- "Death Rates": "1259.2",
- "B /D Ratio": "0.85",
- "": ""
- },
- {
- "Year": "2000",
- "RU": "NonCore",
- "Births": "233,133",
- "Deaths": "213,563",
- "Birth Rates": "1235.6",
- "Death Rates": "1131.9",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2001",
- "RU": "NonCore",
- "Births": "228,433",
- "Deaths": "211,996",
- "Birth Rates": "1212.1",
- "Death Rates": "1124.9",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2002",
- "RU": "NonCore",
- "Births": "225,733",
- "Deaths": "215,981",
- "Birth Rates": "1196.7",
- "Death Rates": "1145.0",
- "B /D Ratio": "1.05",
- "": ""
- },
- {
- "Year": "2003",
- "RU": "NonCore",
- "Births": "228,346",
- "Deaths": "214,734",
- "Birth Rates": "1207.9",
- "Death Rates": "1135.9",
- "B /D Ratio": "1.06",
- "": ""
- },
- {
- "Year": "2004",
- "RU": "NonCore",
- "Births": "228,657",
- "Deaths": "208,090",
- "Birth Rates": "1207.0",
- "Death Rates": "1098.4",
- "B /D Ratio": "1.10",
- "": ""
- },
- {
- "Year": "2005",
- "RU": "NonCore",
- "Births": "231,038",
- "Deaths": "212,617",
- "Birth Rates": "1216.8",
- "Death Rates": "1119.8",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2006",
- "RU": "NonCore",
- "Births": "237,129",
- "Deaths": "208,651",
- "Birth Rates": "1244.6",
- "Death Rates": "1095.1",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2007",
- "RU": "NonCore",
- "Births": "239,198",
- "Deaths": "209,930",
- "Birth Rates": "1252.7",
- "Death Rates": "1099.4",
- "B /D Ratio": "1.14",
- "": ""
- },
- {
- "Year": "2008",
- "RU": "NonCore",
- "Births": "234,616",
- "Deaths": "214,718",
- "Birth Rates": "1226.8",
- "Death Rates": "1122.8",
- "B /D Ratio": "1.09",
- "": ""
- },
- {
- "Year": "2009",
- "RU": "NonCore",
- "Births": "226,889",
- "Deaths": "210,185",
- "Birth Rates": "1186.5",
- "Death Rates": "1099.2",
- "B /D Ratio": "1.08",
- "": ""
- },
- {
- "Year": "2010",
- "RU": "NonCore",
- "Births": "219,160",
- "Deaths": "212,556",
- "Birth Rates": "1145.1",
- "Death Rates": "1110.6",
- "B /D Ratio": "1.03",
- "": ""
- },
- {
- "Year": "2011",
- "RU": "NonCore",
- "Births": "215,675",
- "Deaths": "214,778",
- "Birth Rates": "1128.8",
- "Death Rates": "1124.1",
- "B /D Ratio": "1.00",
- "": ""
- },
- {
- "Year": "2012",
- "RU": "NonCore",
- "Births": "214,757",
- "Deaths": "215,687",
- "Birth Rates": "1128.3",
- "Death Rates": "1133.2",
- "B /D Ratio": "1.00",
- "": ""
- },
- {
- "Year": "2013",
- "RU": "NonCore",
- "Births": "215,012",
- "Deaths": "219,035",
- "Birth Rates": "1131.8",
- "Death Rates": "1153.0",
- "B /D Ratio": "0.98",
- "": ""
- },
- {
- "Year": "2014",
- "RU": "NonCore",
- "Births": "214,209",
- "Deaths": "220,803",
- "Birth Rates": "1130.6",
- "Death Rates": "1165.4",
- "B /D Ratio": "0.97",
- "": ""
- },
- {
- "Year": "2015",
- "RU": "NonCore",
- "Births": "214,516",
- "Deaths": "226,761",
- "Birth Rates": "1134.6",
- "Death Rates": "1199.4",
- "B /D Ratio": "0.95",
- "": ""
- },
- {
- "Year": "2016",
- "RU": "NonCore",
- "Births": "212,093",
- "Deaths": "226,412",
- "Birth Rates": "1125.0",
- "Death Rates": "1201.0",
- "B /D Ratio": "0.94",
- "": ""
- },
- {
- "Year": "2017",
- "RU": "NonCore",
- "Births": "206,680",
- "Deaths": "230,523",
- "Birth Rates": "1098.1",
- "Death Rates": "1224.8",
- "B /D Ratio": "0.90",
- "": ""
- },
- {
- "Year": "2018",
- "RU": "NonCore",
- "Births": "205,049",
- "Deaths": "231,229",
- "Birth Rates": "1090.1",
- "Death Rates": "1229.3",
- "B /D Ratio": "0.89",
- "": ""
- },
- {
- "Year": "2019",
- "RU": "NonCore",
- "Births": "202,098",
- "Deaths": "232,260",
- "Birth Rates": "1076.8",
- "Death Rates": "1237.5",
- "B /D Ratio": "0.87",
- "": ""
- },
- {
- "Year": "2020",
- "RU": "NonCore",
- "Births": "195,119",
- "Deaths": "269,509",
- "Birth Rates": "1048.8",
- "Death Rates": "1448.7",
- "B /D Ratio": "0.72",
- "": ""
- },
- {
- "Year": "2021",
- "RU": "NonCore",
- "Births": "198,109",
- "Deaths": "284,760",
- "Birth Rates": "1063.8",
- "Death Rates": "1529.0",
- "B /D Ratio": "0.70",
- "": ""
- },
- {
- "Year": "2022",
- "RU": "NonCore",
- "Births": "196,182",
- "Deaths": "265,752",
- "Birth Rates": "1052.4",
- "Death Rates": "1425.6",
- "B /D Ratio": "0.74",
- "": ""
- }
- ]
-}
\ No newline at end of file
diff --git a/packages/dashboard/examples/covid-map.json b/packages/dashboard/examples/covid-map.json
deleted file mode 100644
index 3580595925..0000000000
--- a/packages/dashboard/examples/covid-map.json
+++ /dev/null
@@ -1,236 +0,0 @@
-{
- "dashboard": {
- "theme": "theme-blue",
- "sharedFilters": []
- },
- "rows": [
- {
- "uuid": "__undefined__",
- "toggle": "__undefined__",
- "equalHeight": "__undefined__",
- "columns": [
- {
- "width": 12,
- "widget": "map1765464578529"
- },
- {},
- {}
- ]
- }
- ],
- "visualizations": {
- "map1765464578529": {
- "annotations": [],
- "general": {
- "navigationTarget": "_self",
- "noDataMessage": "No State Selected",
- "annotationDropdownText": "Annotations",
- "geoBorderColor": "darkGray",
- "headerColor": "theme-blue",
- "title": "",
- "showTitle": true,
- "showSidebar": true,
- "showDownloadMediaButton": false,
- "displayAsHex": false,
- "displayStateLabels": true,
- "territoriesAlwaysShow": false,
- "language": "en",
- "geoType": "us-county",
- "geoLabelOverride": "",
- "hasRegions": false,
- "fullBorder": false,
- "type": "data",
- "convertFipsCodes": true,
- "palette": {
- "isReversed": true,
- "name": "sequential_bluereverse",
- "version": "2.0"
- },
- "allowMapZoom": true,
- "hideGeoColumnInTooltip": false,
- "hidePrimaryColumnInTooltip": false,
- "statesPicked": []
- },
- "type": "map",
- "columns": {
- "geo": {
- "name": "fips",
- "label": "Location",
- "tooltip": false,
- "dataTable": true
- },
- "primary": {
- "dataTable": true,
- "tooltip": true,
- "prefix": "",
- "suffix": "",
- "name": "category",
- "label": "category",
- "roundToPlace": 0
- },
- "navigate": {
- "name": ""
- },
- "latitude": {
- "name": ""
- },
- "longitude": {
- "name": ""
- }
- },
- "legend": {
- "descriptions": {},
- "specialClasses": [],
- "unified": false,
- "singleColumn": false,
- "singleRow": false,
- "verticalSorted": false,
- "showSpecialClassesLast": false,
- "dynamicDescription": false,
- "numberOfItems": 3,
- "position": "side",
- "title": "",
- "style": "circles",
- "subStyle": "linear blocks",
- "tickRotation": "",
- "type": "category",
- "singleColumnLegend": false,
- "hideBorder": false,
- "groupBy": ""
- },
- "filters": [],
- "table": {
- "wrapColumns": false,
- "label": "Data Table",
- "expanded": false,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "showDownloadLinkBelow": true,
- "showFullGeoNameInCSV": false,
- "forceDisplay": true,
- "download": false,
- "indexLabel": "",
- "cellMinWidth": "0",
- "collapsible": true
- },
- "tooltips": {
- "appearanceType": "hover",
- "linkLabel": "Learn More",
- "opacity": 90
- },
- "visual": {
- "minBubbleSize": 1,
- "maxBubbleSize": 20,
- "extraBubbleBorder": false,
- "cityStyle": "circle",
- "cityStyleLabel": "",
- "showBubbleZeros": false,
- "additionalCityStyles": [],
- "geoCodeCircleSize": 8
- },
- "mapPosition": {
- "coordinates": [0, 30],
- "zoom": 1
- },
- "map": {
- "layers": [],
- "patterns": []
- },
- "hexMap": {
- "type": "",
- "shapeGroups": [
- {
- "legendTitle": "",
- "legendDescription": "",
- "items": [
- {
- "key": "",
- "shape": "Arrow Up",
- "column": "",
- "operator": "=",
- "value": ""
- }
- ]
- }
- ]
- },
- "filterBehavior": "Filter Change",
- "filterIntro": "",
- "smallMultiples": {
- "mode": "",
- "tileColumn": "",
- "tilesPerRowDesktop": 2,
- "tilesPerRowMobile": 1,
- "tileOrderType": "asc",
- "tileOrder": [],
- "tileTitles": {},
- "synchronizedTooltips": true
- },
- "markupVariables": [],
- "enableMarkupVariables": false,
- "openModal": true,
- "uid": "map1765464578529",
- "dataDescription": {
- "horizontal": false,
- "series": false
- },
- "dataKey": "rt_estimates_map",
- "showEditorPanel": true
- }
- },
- "table": {
- "label": "Data Table",
- "show": true,
- "showDownloadUrl": false,
- "showDownloadLinkBelow": true,
- "showVertical": true
- },
- "id": 15,
- "category": "General",
- "label": "Dashboard",
- "type": "dashboard",
- "subType": null,
- "orientation": null,
- "icon": {
- "type": {},
- "key": null,
- "ref": null,
- "props": {},
- "_owner": null,
- "_store": {}
- },
- "content": "Present multiple data visualizations with shared filter controls.",
- "newViz": true,
- "visualizationType": null,
- "activeVizButtonID": 15,
- "runtime": {},
- "version": "4.25.11",
- "migrations": {
- "addColorMigration": true
- },
- "general": {
- "palette": {
- "version": "1.0",
- "backups": [
- {
- "name": "__undefined__",
- "version": "1.0",
- "isReversed": "__undefined__"
- }
- ]
- }
- },
- "datasets": {
- "rt_estimates_map": {
- "dataFileSize": 1780203,
- "dataFileName": "https://cfa-public.apps.ecpaas-dev.cdc.gov/od-public?$datakey=rt_estimates_map&disease=%22COVID-19%22&$limit=5000",
- "dataFileSourceType": "url",
- "dataFileFormat": "JSON",
- "preview": true,
- "dataUrl": "https://cfa-public.apps.ecpaas-dev.cdc.gov/od-public?$datakey=rt_estimates_map&disease=%22COVID-19%22&$limit=5000"
- }
- }
-}
diff --git a/packages/dashboard/examples/custom/css/respiratory.css b/packages/dashboard/examples/custom/css/respiratory.css
deleted file mode 100644
index aa983a3e76..0000000000
--- a/packages/dashboard/examples/custom/css/respiratory.css
+++ /dev/null
@@ -1,236 +0,0 @@
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .cove-dashboard-filters #filter-2,
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .cove-dashboard-filters label[for="filter-2"]{
- display: none;
-}
-
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .cove-dashboard-filters {
- max-width: 150px;
- margin: 0.5em !important;
- margin-bottom: 0 !important;
- vertical-align: middle;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .cove-dashboard-filters:nth-child(3){
- vertical-align: middle;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .cove-dashboard-filters:nth-child(3)::after{
- content: 'Reset';
- padding: .375rem .75rem;
- font-size: 1rem;
- color: #fff;
- background-color: #005eaa;
- border-radius: .1875rem;
- cursor: pointer;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(1),
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(1) .dashboard-col {
- margin-bottom: 0 !important;
- display: block;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row.no-county:nth-child(1)::after {
- content: 'Please select "All" to see values for your state.';
- display: block;
- margin-left: .5em;
-margin-bottom: 1em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row.no-county:nth-child(1) .dashboard-col::after {
- content: 'County-level data unavailable';
- display: block;
- font-weight: bold;
- margin-left: .5em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row.no-counties:nth-child(1) .dashboard-col::after {
- content: 'County level displays are not available for this state/territory';
- display: block;
- font-weight: bold;
- margin-left: .5em;
-margin-bottom: 1em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4){
- display: none !important;
- justify-content: normal !important;
- column-gap: normal !important;
- position: relative;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) .cove-visualization__body {
- padding-top: 0;
- border: 1px solid gray !important;
- border-top: none !important;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
-}
-
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) header {
- border: 1px solid gray;
- background-color: lightgray;
- color: black;
- border-top-left-radius: 0 !important;
- border-top-right-radius: 0 !important;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) header::before {
- content: '';
- display: inline-block;
- width: 1em;
- height: 1em;
- border-radius: .5em;
- border: 1px solid lightgray;
- margin-right: .5em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) .dashboard-col:nth-child(1) header::before {
- display: none;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) .dashboard-col:nth-child(2) header::before {
- background-color: rgb(244, 128, 42);
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) .dashboard-col:nth-child(3) header::before {
- background-color: rgb(15, 102, 200);
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) .dashboard-col:nth-child(4) header::before {
- background-color: rgb(148, 3, 111);
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) .dashboard-col:nth-child(1) p::before {
- display: none;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) p {
- padding-top: 1.5em;
- min-height: 3.5em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) p::before {
- content: '\2192';
- font-weight: 900;
- font-size: xx-large;
- display: inline-block;
- color: rgb(15, 102, 200);
- vertical-align: top;
- line-height: .5em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) p.increasing::before {
- transform: rotate(-45deg);
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4) p.decreasing::before {
- transform: rotate(45deg);
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(4)::before {
- content: 'County Trends';
- position: absolute;
- top: -2em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) {
- display: block;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col {
- display: inline-block;
- vertical-align: top;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(1) {
- width: calc(150px + 3em);
-margin-left: -.5em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(1)::before {
- position: relative;
- content: 'Selection:';
- margin-left: 1rem;
- top: .6em;
- font-weight: bold;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) {
- width: calc(100% - 150px - 4.5em);
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) .theme-blue {
- background-color: #EEE;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) h2 {
- color: black !important;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header {
- background: none;
- border: none;
- color: black;
- position: relative;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header.show-modal::before {
- content: 'x';
- position: absolute;
- right: calc(5% + 1em);
- top: -150px;
- z-index: 1;
- cursor: pointer;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header.show-modal::after {
- content: 'Groups of counties often share healthcare resources. The data shown for the selected county include emergency department visit data collected for the entire area (which may include multiple counties).';
- position: absolute;
- bottom: calc(100% + 1em);
- right: 5%;
- padding: .5em 2em 5em .5em;
- height: 140px;
- width: 250px;
- background-color: rgb(243,247,251);
- color: rgb(56,100,151);
- border: 1px solid rgb(56,100,151);
- border-radius: 5px;
- max-width: 80%;
- font-size: .8em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header h2::after {
- content: 'More Info';
- cursor: pointer;
- text-decoration: underline;
- color:#0000EE;
- float: right;
- font-weight: normal;
- margin-left: 1em;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header div {
- font-weight: bold;
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row.state-level:nth-child(4)::before {
- content: 'State Trends';
-}
-
-div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .margin-left-href {
- display: none;
-}
-
-@media screen and (max-width: 767px) {
- div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col {
- width: 100% !important;
- }
-
- div[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"] .dashboard-row:nth-child(2) .dashboard-col:nth-child(2) {
- margin-bottom: 2em;
- }
-}
\ No newline at end of file
diff --git a/packages/dashboard/examples/custom/js/respiratory.js b/packages/dashboard/examples/custom/js/respiratory.js
deleted file mode 100644
index 9350f08ef1..0000000000
--- a/packages/dashboard/examples/custom/js/respiratory.js
+++ /dev/null
@@ -1,242 +0,0 @@
-$(document).ready(function() {
- function trackMetric(interactionValue){
- if ( window.hasOwnProperty( '_satellite' ) ) {
- var dataObject = {};
- var _satellite = window._satellite;
- var eventLabel = 'respiratory-dasboard-chart';
- var eventValue = interactionValue.replace(/ /g, '-').toLowerCase();
-
-
-
- dataObject.ch = 'OADC';
- dataObject.pageName = document.title;
- dataObject.label = eventLabel;
- dataObject.interactionType = 'o';
- dataObject.interactionValue = 'ci-' + eventLabel + ': ' + eventValue;
-
-
-
- _satellite.track( 'interaction', dataObject );
- }
- }
-
- function onSelectChange(e){
- trackMetric('state-select-' + $(e.target).find('option:selected').text());
- if(e.target.id === 'filter-0'){
- setTimeout(function(){
- var $countySelect = $viz.find('#filter-1');
- var select = $countySelect[0];
- $countySelect.val('All');
- Object.getOwnPropertyDescriptor(window.HTMLSelectElement.prototype, 'value').set.call(select, 'All');
- select.dispatchEvent(new Event('change', { bubbles: true}));
- }, 50);
- }
- }
-
- function onMoreInfoClick(e){
- if(!e.keyCode || e.keyCode === 13){
- var $moreInfoLink = $viz.find('.dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header');
- if($moreInfoLink.hasClass('show-modal')){
- $moreInfoLink.removeClass('show-modal');
- } else {
- $moreInfoLink.addClass('show-modal');
- }
- }
- }
-
- function onResetClick(e){
- if(!e.keyCode || e.keyCode === 13){
- var $stateSelect = $viz.find('#filter-0');
- var select = $stateSelect[0];
- $stateSelect.val('United States');
- Object.getOwnPropertyDescriptor(window.HTMLSelectElement.prototype, 'value').set.call(select, 'United States');
- select.dispatchEvent(new Event('change', { bubbles: true}));
- }
- }
-
- var $viz = $('.wcms-viz-container[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"]')
-
- var observer = new MutationObserver(function(mutations, observer) {
- var $select = $viz.find('select');
- if($select.length > 0){
- $select.off('change', onSelectChange)
- $select.on('change', onSelectChange)
- }
-
- var $resetButton = $viz.find('.cove-dashboard-filters:nth-child(3)');
- if($resetButton.length > 0){
- $resetButton.off('click keypress', onResetClick)
- $resetButton.on('click keypress', onResetClick)
- }
-
- var $moreInfoLink = $viz.find('.dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header');
- if($moreInfoLink.length > 0){
- $moreInfoLink.off('click keypress', onMoreInfoClick)
- $moreInfoLink.on('click keypress', onMoreInfoClick)
- }
- });
-
- if($viz.length > 0){
- observer.observe($viz[0], {
- subtree: true,
- attributes: true
- });
- }
-});
-
-$(document).ready(function() {
- var $viz = $('.wcms-viz-container[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"');
- var hasStateChanged = false;
- var hasCountyChanged = false;
-
- function onMutation(mutations, observer) {
- var $stateSelect = $viz.find('#filter-0');
- var $countySelect = $viz.find('#filter-1');
-
- var hashVal = window.location.hash ? decodeURIComponent(window.location.hash.replace('#', '')) : '';
- var stateVal
- var countyVal
- if(hashVal.indexOf(',') !== -1){
- stateVal = hashVal.split(',')[0]
- countyVal = hashVal.split(',')[1]
- } else {
- stateVal = hashVal
- }
-
- if(stateVal === 'District Of Columbia') stateVal = 'District of Columbia';
-
- if(stateVal && !hasStateChanged && $stateSelect.length > 0){
- var options = $stateSelect.find('option').toArray().map(el => el.value ? el.value.toLowerCase() : '');
- if(stateVal && options.length > 0 && options.indexOf(stateVal.toLowerCase()) !== -1){
- var select = $stateSelect[0];
- $stateSelect.val(stateVal);
- Object.getOwnPropertyDescriptor(window.HTMLSelectElement.prototype, 'value').set.call(select, stateVal);
- select.dispatchEvent(new Event('change', { bubbles: true}));
- $viz[0].scrollIntoView();
-
- hasStateChanged = true;
- }
- }
- if(countyVal && !hasCountyChanged && hasStateChanged && $countySelect.length > 0){
- var options = $countySelect.find('option').toArray().map(el => el.value ? el.value.toLowerCase() : '');
- if(options.length > 0 && options.indexOf(countyVal.toLowerCase()) !== -1){
- var select = $countySelect[0];
- $countySelect.val(countyVal);
- Object.getOwnPropertyDescriptor(window.HTMLSelectElement.prototype, 'value').set.call(select, countyVal);
- select.dispatchEvent(new Event('change', { bubbles: true}));
- $viz[0].scrollIntoView();
-
- hasCountyChanged = true;
- }
-
- }
- }
-
- if($viz.length > 0){
- onMutation();
-
- var observer = new MutationObserver(onMutation);
-
- observer.observe($viz[0], {
- subtree: true,
- attributes: true
- });
- }
-});
-
-$(document).ready(function() {
- var suppressedFlags;
- var $viz = $('.wcms-viz-container[data-config-url="/respiratory-viruses/modules/ed-visits-county-file.json"]')
-
- if($viz.length > 0){
- $.get("https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSPSubStateOptOut.json", function( data ) {
- suppressedFlags = data;
- });
-
- setInterval(function(){
- var $select = $viz.find('#filter-0');
- var $countySelect = $viz.find('#filter-1');
- var $targetSelect = $viz.find('#filter-2');
-
- if($select.val() !== $targetSelect.val()){
- setTimeout(function(){
- var targetSelect = $targetSelect[0];
- $targetSelect.val($select.val()).trigger('change');
- Object.getOwnPropertyDescriptor(window.HTMLSelectElement.prototype, 'value').set.call(targetSelect, $select.val());
- targetSelect.dispatchEvent(new Event('change', { bubbles: true}));
- $select.val($select.val())
-
- }, 50);
- }
- }, 200);
-
- var observer = new MutationObserver(function(mutations, observer) {
- var $select = $viz.find('#filter-0');
- var $countySelect = $viz.find('#filter-1');
- var $targetSelect = $viz.find('#filter-2');
-
- if($countySelect.find('option').length === 1 && $select.val() !== 'District of Columbia' && $select.val() !== 'United States'){
- $viz.find('.dashboard-row:nth-child(1)').addClass('no-counties');
- $viz.find('.dashboard-row:nth-child(4)').removeClass('county-level').addClass('state-level');
- } else {
- $viz.find('.dashboard-row:nth-child(1)').removeClass('no-counties');
- $viz.find('.dashboard-row:nth-child(4)').removeClass('state-level').addClass('county-level');
- }
-
- if(suppressedFlags){
- var suppressedNode = suppressedFlags.find(function(d){
- if(d['geography'] === $select.val() && d['county'] === $countySelect.val()){
- return true
- }
- });
- if(suppressedNode && suppressedNode['is_hsa_opt_out'] === 'true'){
- $viz.find('.cdc-chart-inner-container').hide()
- $viz.find('.dashboard-row:nth-child(1)').addClass('no-county');
- } else {
- $viz.find('.dashboard-row:nth-child(1)').removeClass('no-county');
- $viz.find('.cdc-chart-inner-container').show()
- }
- } else {
- $viz.find('.dashboard-row:nth-child(1)').removeClass('no-county');
- $viz.find('.cdc-chart-inner-container').show()
- }
-
- var countyAll = $countySelect.find('option[value="All"]')
- if(countyAll.length === 1 && countyAll.index() !== 0){
- countyAll.remove();
- $countySelect.prepend(countyAll);
- }
-
- var stateAll = $select.find('option[value="United States"]')
- if(stateAll.length === 1 && stateAll.index() !== 0){
- stateAll.remove();
- $select.prepend(stateAll);
- }
-
- $viz.find('.dashboard-row:nth-child(4) p').each(function(index, el){
- var className = el.innerText.trim().toLowerCase().replace(' ', '-');
- if(!$(el).hasClass(className)){
- $(el).removeClass('increasing decreasing')
- $(el).addClass(className);
- }
- })
-
- if($viz.find('.dashboard-row:nth-child(4) .dashboard-col').length === 3){
- $viz.find('.dashboard-row:nth-child(4)').prepend('');
- }
-
- if($viz.find('.dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header').length > 0 && !$viz.find('.dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header').attr('tabindex')){
- $viz.find('.dashboard-row:nth-child(2) .dashboard-col:nth-child(2) header').attr('tabindex', '0');
- }
-
- if($viz.find('.cove-dashboard-filters:nth-child(3)').length > 0 && !$viz.find('.cove-dashboard-filters:nth-child(3)').attr('tabindex')){
- $viz.find('.cove-dashboard-filters:nth-child(3)').attr('tabindex', '0');
- }
- });
-
- observer.observe($viz[0], {
- subtree: true,
- attributes: true
- });
- }
-});
\ No newline at end of file
diff --git a/packages/dashboard/examples/default-data.json b/packages/dashboard/examples/default-data.json
deleted file mode 100644
index a664aa2826..0000000000
--- a/packages/dashboard/examples/default-data.json
+++ /dev/null
@@ -1,368 +0,0 @@
-[
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "75",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "100",
- "state": "Alabama"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alabama"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- }
-]
diff --git a/packages/dashboard/examples/default-filter-control.json b/packages/dashboard/examples/default-filter-control.json
deleted file mode 100644
index c0128fe761..0000000000
--- a/packages/dashboard/examples/default-filter-control.json
+++ /dev/null
@@ -1,209 +0,0 @@
-{
- "type": "dashboard",
- "datasets": {
- "data1": {
- "data": [
- {
- "Insured Rate": "43",
- "date": "2022-01-02",
- "state": "Alabama"
- },
- {
- "Insured Rate": "53",
- "date": "2022-02-02",
- "state": "Alabama"
- },
- {
- "Insured Rate": "23",
- "date": "2022-03-02",
- "state": "Alabama"
- },
- {
- "Insured Rate": "13",
- "date": "2022-01-02",
- "state": "Georgia"
- },
- {
- "Insured Rate": "63",
- "date": "2022-02-02",
- "state": "Georgia"
- },
- {
- "Insured Rate": "40",
- "date": "2022-03-02",
- "state": "Georgia"
- },
- {
- "Insured Rate": "30",
- "date": "2022-01-02",
- "state": "Florida"
- },
- {
- "Insured Rate": "55",
- "date": "2022-02-02",
- "state": "Florida"
- },
- {
- "Insured Rate": "90",
- "date": "2022-03-02",
- "state": "Florida"
- }
- ]
- },
- "data2": {
- "data": [
- {
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "Insured Rate": "63",
- "state": "Georgia"
- },
- {
- "Insured Rate": "53",
- "state": "Florida"
- }
- ]
- }
- },
- "dashboard": {
- "sharedFilters": [
- {
- "key": "sharedFilter1",
- "columnName": "state",
- "setBy": "map1",
- "usedBy": [
- "chart1"
- ]
- }
- ]
- },
- "rows": [
- [
- {
- "width": 12,
- "widget": "map1"
- },
- {},
- {}
- ],
- [
- {
- "width": 12,
- "widget": "chart1"
- },
- {},
- {}
- ]
- ],
- "visualizations": {
- "map1": {
- "uid": "map1",
- "type": "map",
- "defaultData": false,
- "dataKey": "data2",
- "general": {
- "title": "Map Example",
- "subtext": "",
- "territoriesLabel": "Territories",
- "type": "data",
- "geoType": "us",
- "headerColor": "theme-blue",
- "showSidebar": true,
- "showTitle": true,
- "geoBorderColor": "darkGray",
- "showDownloadButton": true,
- "expandDataTable": true
- },
- "color": "pinkpurple",
- "columns": {
- "geo": {
- "name": "state",
- "label": "Location",
- "tooltip": false,
- "dataTable": true
- },
- "primary": {
- "name": "Insured Rate",
- "label": "Data Label",
- "prefix": "",
- "suffix": "%",
- "dataTable": true,
- "tooltip": true
- },
- "navigate": {
- "name": "link",
- "tooltip": false,
- "dataTable": false
- }
- },
- "legend": {
- "numberOfItems": 3,
- "position": "side",
- "title": "Legend Title",
- "description": "Legend Text",
- "type": "equalnumber",
- "specialClasses": [
- "N/A"
- ]
- },
- "dataTable": {
-
- }
- },
- "chart1": {
- "uid": "chart1",
- "type": "chart",
- "dataKey": "data1",
- "title": "Test",
- "description": "Test
",
- "visualizationType": "Line",
- "series": [
- {
- "dataKey": "Insured Rate",
- "label": "Insured Rate"
- }
- ],
- "fontSize": "large",
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": ""
- },
- "padding": {
- "left": 15,
- "right": 15
- },
- "yAxis": {
- "label": "Insured Rate",
- "paddingPercent": 0.15
- },
- "xAxis": {
- "label": "Date",
- "dataKey": "date",
- "type": "date",
- "dateParseFormat": "%Y-%m-%d",
- "dateDisplayFormat": "%b %d",
- "numTicks": 8,
- "tickRotation": 50
- },
- "legend": {
- "label": "Legend",
- "above": true,
- "left": true
- },
- "table": {
- "label": "Data Table",
- "expanded": false,
- "download": true
- }
- }
- },
- "table": {
- "downloadImageButton": true,
- "downloadPdfButton": true,
- "download": true,
- "show": true
- }
-}
diff --git a/packages/dashboard/examples/default-multi-dataset-shared-filter.json b/packages/dashboard/examples/default-multi-dataset-shared-filter.json
deleted file mode 100644
index a330210ee5..0000000000
--- a/packages/dashboard/examples/default-multi-dataset-shared-filter.json
+++ /dev/null
@@ -1,1729 +0,0 @@
-{
- "dashboard": {
- "sharedFilters": [
- {
- "key": "Wind",
- "type": "datafilter",
- "showDropdown": true,
- "usedBy": [
- "chart1"
- ],
- "columnName": "wind",
- "values": [
- "Include Wind",
- "Don't Include Wind"
- ],
- "active": "Include Wind",
- "tier": 1
- }
- ]
- },
- "rows": [
- {
- "columns": [
- {
- "width": 12,
- "widget": "chart1"
- },
- {},
- {}
- ]
- },
- {
- "columns": [
- {
- "width": 12,
- "widget": "map1"
- },
- {},
- {}
- ]
- }
- ],
- "visualizations": {
- "chart1": {
- "annotations": [],
- "type": "chart",
- "debugSvg": false,
- "chartMessage": {
- "noData": "No Data Available"
- },
- "title": "Average Temperature By City (Line Example)",
- "showTitle": true,
- "showDownloadMediaButton": false,
- "theme": "theme-blue",
- "animate": false,
- "fontSize": "large",
- "lineDatapointStyle": "hover",
- "lineDatapointColor": "Same as Line",
- "barHasBorder": "false",
- "isLollipopChart": false,
- "lollipopShape": "circle",
- "lollipopColorStyle": "two-tone",
- "visualizationSubType": "regular",
- "barStyle": "flat",
- "roundingStyle": "standard",
- "tipRounding": "top",
- "isResponsiveTicks": false,
- "general": {
- "showDownloadButton": false,
- "showMissingDataLabel": true,
- "showSuppressedSymbol": true,
- "showZeroValueDataLabel": true
- },
- "padding": {
- "left": 15,
- "right": 15
- },
- "preliminaryData": [],
- "yAxis": {
- "hideAxis": false,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 50,
- "gridLines": false,
- "enablePadding": false,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": true,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "",
- "axisPadding": 0,
- "scalePadding": 10,
- "tickRotation": 0,
- "anchors": [],
- "shoMissingDataLabel": true,
- "showMissingDataLine": true,
- "label": "Temperature",
- "paddingPercent": 0.15
- },
- "boxplot": {
- "plots": [],
- "borders": "true",
- "firstQuartilePercentage": 25,
- "thirdQuartilePercentage": 75,
- "boxWidthPercentage": 40,
- "plotOutlierValues": false,
- "plotNonOutlierValues": true,
- "legend": {
- "showHowToReadText": false,
- "howToReadText": ""
- },
- "labels": {
- "q1": "Lower Quartile",
- "q2": "q2",
- "q3": "Upper Quartile",
- "q4": "q4",
- "minimum": "Minimum",
- "maximum": "Maximum",
- "mean": "Mean",
- "median": "Median",
- "sd": "Standard Deviation",
- "iqr": "Interquartile Range",
- "total": "Total",
- "outliers": "Outliers",
- "values": "Values",
- "lowerBounds": "Lower Bounds",
- "upperBounds": "Upper Bounds"
- }
- },
- "topAxis": {
- "hasLine": false
- },
- "isLegendValue": false,
- "barThickness": 0.35,
- "barHeight": 25,
- "barSpace": 15,
- "heights": {
- "vertical": 300,
- "horizontal": 750
- },
- "xAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "date",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": 75,
- "tickRotation": 50,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": 8,
- "labelOffset": 65,
- "axisPadding": 200,
- "target": 0,
- "maxTickRotation": 0,
- "label": "Date",
- "dataKey": "date",
- "dateParseFormat": "%Y-%m-%d",
- "dateDisplayFormat": "%b %d",
- "tickWidthMax": 59,
- "padding": 6
- },
- "table": {
- "label": "Data Table",
- "expanded": false,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "indexLabel": "",
- "download": true,
- "showVertical": false,
- "dateDisplayFormat": "",
- "showMissingDataLabel": true,
- "showSuppressedSymbol": true,
- "show": false
- },
- "orientation": "vertical",
- "color": "pinkpurple",
- "columns": {},
- "legend": {
- "hide": false,
- "behavior": "isolate",
- "axisAlign": true,
- "singleRow": true,
- "colorCode": "",
- "reverseLabelOrder": false,
- "description": "",
- "dynamicLegend": false,
- "dynamicLegendDefaultText": "Show All",
- "dynamicLegendItemLimit": 5,
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
- "dynamicLegendChartMessage": "Select Options from the Legend",
- "lineMode": false,
- "verticalSorted": false,
- "highlightOnHover": false,
- "hideSuppressedLabels": false,
- "seriesHighlight": [],
- "label": "Legend",
- "above": true,
- "left": true
- },
- "brush": {
- "height": 25,
- "active": false
- },
- "exclusions": {
- "active": false,
- "keys": []
- },
- "palette": "qualitative-bold",
- "isPaletteReversed": false,
- "twoColor": {
- "palette": "monochrome-1",
- "isPaletteReversed": false
- },
- "labels": false,
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": "°",
- "abbreviated": false,
- "bottomSuffix": "",
- "bottomPrefix": "",
- "bottomAbbreviated": false
- },
- "confidenceKeys": {},
- "visual": {
- "border": true,
- "accent": true,
- "background": true,
- "verticalHoverLine": false,
- "horizontalHoverLine": false
- },
- "useLogScale": false,
- "filterBehavior": "Filter Change",
- "highlightedBarValues": [],
- "series": [
- {
- "dataKey": "New York",
- "type": "Line",
- "axis": "Left",
- "tooltip": true
- },
- {
- "dataKey": "San Francisco",
- "type": "Line",
- "axis": "Left",
- "tooltip": true
- },
- {
- "dataKey": "Austin",
- "type": "Line",
- "axis": "Left",
- "tooltip": true
- }
- ],
- "tooltips": {
- "opacity": 90,
- "singleSeries": false,
- "dateDisplayFormat": ""
- },
- "forestPlot": {
- "startAt": 0,
- "colors": {
- "line": "",
- "shape": ""
- },
- "lineOfNoEffect": {
- "show": true
- },
- "type": "",
- "pooledResult": {
- "diamondHeight": 5,
- "column": ""
- },
- "estimateField": "",
- "estimateRadius": "",
- "shape": "square",
- "rowHeight": 20,
- "description": {
- "show": true,
- "text": "description",
- "location": 0
- },
- "result": {
- "show": true,
- "text": "result",
- "location": 100
- },
- "radius": {
- "min": 2,
- "max": 10,
- "scalingColumn": ""
- },
- "regression": {
- "lower": 0,
- "upper": 0,
- "estimateField": 0
- },
- "leftWidthOffset": 0,
- "rightWidthOffset": 0,
- "showZeroLine": false,
- "leftLabel": "",
- "rightLabel": ""
- },
- "area": {
- "isStacked": false
- },
- "sankey": {
- "title": {
- "defaultColor": "black"
- },
- "iterations": 1,
- "rxValue": 0.9,
- "overallSize": {
- "width": 900,
- "height": 700
- },
- "margin": {
- "margin_y": 25,
- "margin_x": 0
- },
- "nodeSize": {
- "nodeWidth": 26,
- "nodeHeight": 40
- },
- "nodePadding": 55,
- "nodeFontColor": "black",
- "nodeColor": {
- "default": "#ff8500",
- "inactive": "#808080"
- },
- "linkColor": {
- "default": "#ffc900",
- "inactive": "#D3D3D3"
- },
- "opacity": {
- "nodeOpacityDefault": 1,
- "nodeOpacityInactive": 0.1,
- "LinkOpacityDefault": 1,
- "LinkOpacityInactive": 0.1
- },
- "storyNodeFontColor": "#006778",
- "storyNodeText": [],
- "nodeValueStyle": {
- "textBefore": "(",
- "textAfter": ")"
- },
- "data": []
- },
- "uid": "chart1",
- "dataKey": "data2",
- "description": "Average temperature from October 1st through August 29th in:
- New York
- San Francisco
- Austin
",
- "visualizationType": "Line",
- "filters": [
- {
- "label": "Humidity",
- "columnName": "humidity",
- "values": [
- "Don't Include Humidiy",
- "Include Humidiy"
- ],
- "active": "Don't Include Humidiy",
- "filterStyle": "dropdown",
- "order": "asc"
- }
- ],
- "seriesLabel": "City",
- "regions": [
- {
- "label": "Region",
- "color": "black",
- "background": "green",
- "from": "2011-10-02",
- "to": "2011-10-03"
- }
- ],
- "formattedData": [
- {
- "date": "2011-10-01",
- "New York": "89.4",
- "San Francisco": "26.7",
- "Austin": "34.2",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "54.0",
- "San Francisco": "59.9",
- "Austin": "68.7",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "51.3",
- "San Francisco": "53.1",
- "Austin": "64.4",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "34.7",
- "San Francisco": "56.8",
- "Austin": "98.0",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "32.4",
- "San Francisco": "43.7",
- "Austin": "54.2",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "65.0",
- "San Francisco": "76.9",
- "Austin": "87.7",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "72.2",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "58.0",
- "San Francisco": "59.9",
- "Austin": "67.7",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "87.2",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "98.0",
- "San Francisco": "59.9",
- "Austin": "67.7",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "54.8",
- "Austin": "68.0",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- }
- ],
- "editing": false,
- "originalFormattedData": [
- {
- "date": "2011-10-01",
- "New York": "89.4",
- "San Francisco": "26.7",
- "Austin": "34.2",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "54.0",
- "San Francisco": "59.9",
- "Austin": "68.7",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "51.3",
- "San Francisco": "53.1",
- "Austin": "64.4",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "34.7",
- "San Francisco": "56.8",
- "Austin": "98.0",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "32.4",
- "San Francisco": "43.7",
- "Austin": "54.2",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "65.0",
- "San Francisco": "76.9",
- "Austin": "87.7",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "72.2",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "58.0",
- "San Francisco": "59.9",
- "Austin": "67.7",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "87.2",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "98.0",
- "San Francisco": "59.9",
- "Austin": "67.7",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "54.8",
- "Austin": "68.0",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- }
- ],
- "data": [
- {
- "date": "2011-10-01",
- "New York": "89.4",
- "San Francisco": "26.7",
- "Austin": "34.2",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "54.0",
- "San Francisco": "59.9",
- "Austin": "68.7",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "51.3",
- "San Francisco": "53.1",
- "Austin": "64.4",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "34.7",
- "San Francisco": "56.8",
- "Austin": "98.0",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "32.4",
- "San Francisco": "43.7",
- "Austin": "54.2",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "65.0",
- "San Francisco": "76.9",
- "Austin": "87.7",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "72.2",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "58.0",
- "San Francisco": "59.9",
- "Austin": "67.7",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "87.2",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "98.0",
- "San Francisco": "59.9",
- "Austin": "67.7",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "54.8",
- "Austin": "68.0",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- }
- ],
- "version": "4.24.4",
- "dynamicMarginTop": 0
- },
- "map1": {
- "uid": "map1",
- "type": "map",
- "defaultData": false,
- "dataKey": "data1",
- "general": {
- "title": "Map Example",
- "subtext": "",
- "territoriesLabel": "Territories",
- "type": "data",
- "geoType": "us",
- "headerColor": "theme-blue",
- "showSidebar": true,
- "showTitle": true,
- "geoBorderColor": "darkGray",
- "showDownloadButton": true,
- "expandDataTable": true
- },
- "color": "pinkpurple",
- "columns": {
- "geo": {
- "name": "state",
- "label": "Location",
- "tooltip": false,
- "dataTable": true
- },
- "primary": {
- "name": "Insured Rate",
- "label": "Data Label",
- "prefix": "",
- "suffix": "%",
- "dataTable": true,
- "tooltip": true
- },
- "navigate": {
- "name": "link",
- "tooltip": false,
- "dataTable": false
- }
- },
- "legend": {
- "numberOfItems": 3,
- "position": "side",
- "title": "Legend Title",
- "description": "Legend Text",
- "type": "equalnumber",
- "specialClasses": [
- "N/A"
- ]
- },
- "filters": [
- {
- "label": "Filter 2",
- "columnName": "filter2"
- }
- ],
- "formattedData": [
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "75",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "100",
- "state": "Alabama"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alabama"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- }
- ]
- }
- },
- "table": {
- "label": "Data Table",
- "show": true,
- "showDownloadUrl": false,
- "showVertical": true
- },
- "type": "dashboard",
- "datasets": {
- "data1": {
- "data": [
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "75",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "100",
- "state": "Alabama"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alabama"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- }
- ]
- },
- "data2": {
- "dataUrl": "../examples/temp-example-data.json",
- "data": [
- {
- "date": "2011-10-01",
- "New York": "89.4",
- "San Francisco": "26.7",
- "Austin": "34.2",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "54.0",
- "San Francisco": "59.9",
- "Austin": "68.7",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "51.3",
- "San Francisco": "53.1",
- "Austin": "64.4",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "34.7",
- "San Francisco": "56.8",
- "Austin": "98.0",
- "wind": "Include Winderwall",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "32.4",
- "San Francisco": "43.7",
- "Austin": "54.2",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "65.0",
- "San Francisco": "76.9",
- "Austin": "87.7",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0",
- "wind": "Don't Include Wind",
- "humidity": "Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "72.2",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "58.0",
- "San Francisco": "59.9",
- "Austin": "67.7",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "58.8",
- "Austin": "68.0",
- "wind": "Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-01",
- "New York": "63.4",
- "San Francisco": "62.7",
- "Austin": "87.2",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-02",
- "New York": "98.0",
- "San Francisco": "59.9",
- "Austin": "67.7",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-03",
- "New York": "53.3",
- "San Francisco": "59.1",
- "Austin": "69.4",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- },
- {
- "date": "2011-10-04",
- "New York": "55.7",
- "San Francisco": "54.8",
- "Austin": "68.0",
- "wind": "Don't Include Wind",
- "humidity": "Don't Include Humidiy"
- }
- ]
- }
- },
- "runtime": {},
- "version": "4.24.4"
-}
\ No newline at end of file
diff --git a/packages/dashboard/examples/default-multi-dataset.json b/packages/dashboard/examples/default-multi-dataset.json
deleted file mode 100644
index 71a3b24aae..0000000000
--- a/packages/dashboard/examples/default-multi-dataset.json
+++ /dev/null
@@ -1,506 +0,0 @@
-{
- "type": "dashboard",
- "datasets": {
- "data1": {
- "data": [
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "75",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "100",
- "state": "Alabama"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alabama"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 1",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option1",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option2",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "43",
- "state": "Alabama"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "0",
- "state": "Alaska"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "72.7",
- "state": "Arizona"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "78.7",
- "state": "Arkansas"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "37.2",
- "state": "California"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "50.6",
- "state": "Colorado"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "83.2",
- "state": "Connecticut"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "90",
- "state": "Delaware"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "77",
- "state": "District of Columbia"
- },
- {
- "filter1": "option3",
- "filter2": "sub option 2",
- "Insured Rate": "83",
- "state": "Florida"
- }
- ]
- },
- "data2": {
- "dataUrl": "../examples/temp-example-data.json"
- }
- },
- "dashboard": {},
- "rows": [
- [{ "width": 12, "widget": "chart1" }, {}, {}],
- [{ "width": 12, "widget": "map1" }, {}, {}]
- ],
- "visualizations": {
- "chart1": {
- "uid": "chart1",
- "type": "chart",
- "dataKey": "data2",
- "title": "Average Temperature By City (Line Example)",
- "description": "Average temperature from October 1st through August 29th in:
- New York
- San Francisco
- Austin
",
- "visualizationType": "Line",
- "series": [
- { "dataKey": "New York", "label": "NY" },
- { "dataKey": "San Francisco", "label": "SF" },
- { "dataKey": "Austin", "label": "AU" }
- ],
- "filters": [
- {
- "label": "Wind",
- "columnName": "wind"
- },
- {
- "label": "Humidity",
- "columnName": "humidity"
- }
- ],
- "seriesLabel": "City",
- "fontSize": "large",
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": "°"
- },
- "padding": {
- "left": 15,
- "right": 15
- },
- "yAxis": {
- "label": "Temperature",
- "paddingPercent": 0.15
- },
- "xAxis": {
- "label": "Date",
- "dataKey": "date",
- "type": "date",
- "dateParseFormat": "%Y-%m-%d",
- "dateDisplayFormat": "%b %d",
- "numTicks": 8,
- "tickRotation": 50
- },
- "legend": {
- "label": "Legend",
- "above": true,
- "left": true
- },
- "table": {
- "label": "Data Table",
- "expanded": false,
- "download": true
- },
- "regions": [
- {
- "label": "Region",
- "color": "black",
- "background": "green",
- "from": "2011-10-02",
- "to": "2011-10-03"
- }
- ]
- },
- "map1": {
- "uid": "map1",
- "type": "map",
- "defaultData": false,
- "dataKey": "data1",
- "general": {
- "title": "Map Example",
- "subtext": "",
- "territoriesLabel": "Territories",
- "type": "data",
- "geoType": "us",
- "headerColor": "theme-blue",
- "showSidebar": true,
- "showTitle": true,
- "geoBorderColor": "darkGray",
- "showDownloadButton": true,
- "expandDataTable": true
- },
- "color": "pinkpurple",
- "columns": {
- "geo": {
- "name": "state",
- "label": "Location",
- "tooltip": false,
- "dataTable": true
- },
- "primary": {
- "name": "Insured Rate",
- "label": "Data Label",
- "prefix": "",
- "suffix": "%",
- "dataTable": true,
- "tooltip": true
- },
- "navigate": {
- "name": "link",
- "tooltip": false,
- "dataTable": false
- }
- },
- "legend": {
- "numberOfItems": 3,
- "position": "side",
- "title": "Legend Title",
- "description": "Legend Text",
- "type": "equalnumber",
- "specialClasses": ["N/A"]
- },
- "filters": [
- {
- "label": "Filter 2",
- "columnName": "filter2"
- }
- ]
- }
- }
-}
diff --git a/packages/dashboard/examples/ed-visits-county-file.json b/packages/dashboard/examples/ed-visits-county-file.json
deleted file mode 100644
index 7c74d659cf..0000000000
--- a/packages/dashboard/examples/ed-visits-county-file.json
+++ /dev/null
@@ -1,402 +0,0 @@
-{
- "dashboard": {
- "theme": "theme-blue",
- "sharedFilters": [
- {
- "key": "State",
- "type": "urlfilter",
- "columnName": "geography",
- "showDropdown": true,
- "usedBy": [
- "chart1701791122773",
- "filtered-text1701791173259",
- "filtered-text1701791674571",
- "filtered-text1701791683990"
- ],
- "tier": 1,
- "datasetKey": "resp-data.json",
- "filterBy": "File Name",
- "fileName": "NSSPSubState${query}",
- "apiFilter": {
- "apiEndpoint": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSP%20Subsets/NSSPGeographyReference.json",
- "valueSelector": "geography",
- "textSelector": "geography"
- },
- "whitespaceReplacement": "Remove Spaces"
- },
- {
- "key": "County",
- "type": "datafilter",
- "columnName": "county",
- "showDropdown": true,
- "usedBy": [
- "chart1701791122773",
- "filtered-text1701791173259",
- "filtered-text1701791674571",
- "filtered-text1701791683990",
- "filter-dropdowns1701792379133",
- "filtered-text1701888972205",
- "filtered-text1701888980655"
- ],
- "values": ["All"],
- "tier": 1,
- "parents": ["State"]
- }
- ]
- },
- "rows": [
- { "columns": [{ "width": 12, "widget": "filter-dropdowns1701792379133" }, { "equalHeight": false }, {}, {}] },
- {
- "columns": [
- { "width": 6, "widget": "filtered-text1701888972205" },
- { "equalHeight": false, "width": 6, "widget": "filtered-text1701888980655" },
- { "width": null },
- { "width": null }
- ]
- },
- { "columns": [{ "width": 12, "widget": "chart1701791122773" }, { "equalHeight": false }, {}, {}] }
- ],
- "visualizations": {
- "chart1701791122773": {
- "annotations": [],
- "type": "chart",
- "debugSvg": false,
- "chartMessage": { "noData": "No Data Available" },
- "title": "",
- "showTitle": false,
- "showDownloadMediaButton": false,
- "theme": "theme-blue",
- "animate": false,
- "fontSize": "medium",
- "lineDatapointStyle": "hover",
- "lineDatapointColor": "Same as Line",
- "barHasBorder": "false",
- "isLollipopChart": false,
- "lollipopShape": "circle",
- "lollipopColorStyle": "two-tone",
- "visualizationSubType": "regular",
- "barStyle": "flat",
- "roundingStyle": "standard",
- "tipRounding": "top",
- "isResponsiveTicks": false,
- "general": {
- "annotationDropdownText": "Annotations",
- "showDownloadButton": false,
- "showMissingDataLabel": true,
- "showSuppressedSymbol": true,
- "showZeroValueData": true,
- "hideNullValue": true,
- "showZeroValueDataLabel": true
- },
- "padding": { "left": 5, "right": 5 },
- "preliminaryData": [],
- "yAxis": {
- "hideAxis": true,
- "displayNumbersOnBar": false,
- "hideLabel": false,
- "hideTicks": true,
- "size": "20",
- "gridLines": true,
- "enablePadding": true,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "rightHideAxis": true,
- "rightAxisSize": 0,
- "rightLabel": "",
- "rightLabelOffsetSize": 0,
- "rightAxisLabelColor": "#333",
- "rightAxisTickLabelColor": "#333",
- "rightAxisTickColor": "#333",
- "numTicks": "5",
- "axisPadding": 0,
- "scalePadding": "20",
- "tickRotation": 0,
- "anchors": [],
- "shoMissingDataLabel": true,
- "showMissingDataLine": true,
- "categories": [],
- "label": "",
- "maxValue": 6.446000000000001
- },
- "boxplot": {
- "plots": [],
- "borders": "true",
- "firstQuartilePercentage": 25,
- "thirdQuartilePercentage": 75,
- "boxWidthPercentage": 40,
- "plotOutlierValues": false,
- "plotNonOutlierValues": true,
- "legend": { "showHowToReadText": false, "howToReadText": "" },
- "labels": {
- "q1": "Lower Quartile",
- "q2": "q2",
- "q3": "Upper Quartile",
- "q4": "q4",
- "minimum": "Minimum",
- "maximum": "Maximum",
- "mean": "Mean",
- "median": "Median",
- "sd": "Standard Deviation",
- "iqr": "Interquartile Range",
- "total": "Total",
- "outliers": "Outliers",
- "values": "Values",
- "lowerBounds": "Lower Bounds",
- "upperBounds": "Upper Bounds"
- }
- },
- "topAxis": { "hasLine": false },
- "isLegendValue": false,
- "barThickness": 0.35,
- "barHeight": 25,
- "barSpace": 15,
- "heights": { "vertical": "250", "horizontal": 750, "mobileVertical": "150" },
- "xAxis": {
- "sortDates": false,
- "anchors": [],
- "type": "date-time",
- "showTargetLabel": true,
- "targetLabel": "Target",
- "hideAxis": false,
- "hideLabel": false,
- "hideTicks": false,
- "size": "0",
- "tickRotation": 0,
- "min": "",
- "max": "",
- "labelColor": "#333",
- "tickLabelColor": "#333",
- "tickColor": "#333",
- "numTicks": "6",
- "labelOffset": 0,
- "axisPadding": 0,
- "target": 0,
- "maxTickRotation": "0",
- "padding": "0",
- "showYearsOnce": true,
- "dataKey": "week_end",
- "dateParseFormat": "%Y-%m-%d",
- "dateDisplayFormat": "%b. %Y",
- "label": "",
- "tickWidthMax": 40,
- "axisBBox": 25.360000610351562,
- "viewportNumTicks": { "xxs": "" }
- },
- "table": {
- "label": "Data Table",
- "expanded": false,
- "limitHeight": false,
- "height": "",
- "caption": "",
- "showDownloadUrl": false,
- "showDataTableLink": true,
- "showDownloadLinkBelow": true,
- "indexLabel": "Week Ending",
- "download": true,
- "showVertical": true,
- "dateDisplayFormat": "",
- "showMissingDataLabel": true,
- "showSuppressedSymbol": true,
- "show": true
- },
- "orientation": "vertical",
- "color": "pinkpurple",
- "columns": {},
- "legend": {
- "hide": false,
- "behavior": "isolate",
- "axisAlign": true,
- "singleRow": true,
- "colorCode": "",
- "reverseLabelOrder": false,
- "description": "",
- "dynamicLegend": false,
- "dynamicLegendDefaultText": "Show All",
- "dynamicLegendItemLimit": 5,
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
- "dynamicLegendChartMessage": "Select Options from the Legend",
- "label": "Respiratory Virus",
- "lineMode": false,
- "verticalSorted": false,
- "highlightOnHover": false,
- "hideSuppressedLabels": false,
- "hideSuppressionLink": false,
- "seriesHighlight": [],
- "style": "circles",
- "subStyle": "linear blocks",
- "tickRotation": "",
- "hideBorder": { "side": false, "topBottom": true },
- "position": "bottom"
- },
- "brush": { "height": 25, "active": false, "pattern_id": "brush_pattern", "accent_color": "#ddd" },
- "exclusions": { "active": false, "keys": [], "dateEnd": "2023-12-16" },
- "palette": "qualitative-bold",
- "isPaletteReversed": false,
- "twoColor": { "palette": "monochrome-1", "isPaletteReversed": false },
- "labels": false,
- "dataFormat": {
- "commas": false,
- "prefix": "",
- "suffix": "% of emergency department visits",
- "abbreviated": true,
- "bottomSuffix": "",
- "bottomPrefix": "",
- "bottomAbbreviated": false,
- "roundTo": "1",
- "onlyShowTopPrefixSuffix": true
- },
- "confidenceKeys": {},
- "visual": {
- "border": true,
- "accent": true,
- "background": true,
- "verticalHoverLine": true,
- "horizontalHoverLine": false
- },
- "useLogScale": false,
- "filterBehavior": "Filter Change",
- "highlightedBarValues": [],
- "series": [
- { "dataKey": "percent_visits_covid", "name": "COVID-19", "type": "Line", "axis": "Left", "tooltip": true },
- { "dataKey": "percent_visits_influenza", "name": "Influenza", "type": "Line", "axis": "Left", "tooltip": true },
- { "dataKey": "percent_visits_rsv", "name": "RSV", "type": "Line", "axis": "Left", "tooltip": true }
- ],
- "tooltips": { "opacity": 90, "singleSeries": false, "dateDisplayFormat": "%B %-d, %Y" },
- "forestPlot": {
- "startAt": 0,
- "colors": { "line": "", "shape": "" },
- "lineOfNoEffect": { "show": true },
- "type": "",
- "pooledResult": { "diamondHeight": 5, "column": "" },
- "estimateField": "",
- "estimateRadius": "",
- "shape": "",
- "rowHeight": 20,
- "description": { "show": true, "text": "description", "location": 0 },
- "result": { "show": true, "text": "result", "location": 100 },
- "radius": { "min": 1, "max": 8, "scalingColumn": "" },
- "regression": { "lower": 0, "upper": 0, "estimateField": 0 },
- "leftWidthOffset": 0,
- "rightWidthOffset": 0,
- "showZeroLine": false,
- "leftLabel": "",
- "rightLabel": "",
- "hideDateCategoryCol": false,
- "width": "auto",
- "lowerCiField": "",
- "upperCiField": ""
- },
- "area": { "isStacked": false },
- "sankey": {
- "title": { "defaultColor": "black" },
- "iterations": 1,
- "rxValue": 0.9,
- "overallSize": { "width": 900, "height": 700 },
- "margin": { "margin_y": 25, "margin_x": 0 },
- "nodeSize": { "nodeWidth": 26, "nodeHeight": 40 },
- "nodePadding": 55,
- "nodeFontColor": "black",
- "nodeColor": { "default": "#ff8500", "inactive": "#808080" },
- "linkColor": { "default": "#ffc900", "inactive": "#D3D3D3" },
- "opacity": {
- "nodeOpacityDefault": 1,
- "nodeOpacityInactive": 0.1,
- "LinkOpacityDefault": 1,
- "LinkOpacityInactive": 0.1
- },
- "storyNodeFontColor": "#006778",
- "storyNodeText": [],
- "nodeValueStyle": { "textBefore": "(", "textAfter": ")" },
- "data": []
- },
- "suppressedData": [],
- "showChartBrush": false,
- "datasets": {},
- "visualizationType": "Line",
- "dataKey": "resp-data.json",
- "customColors": ["#f06f19", "#0a58d6", "#890664", "#89bf13", "#94036f", "#87b6f9", "#867a77", "#000000"],
- "dataFileName": "/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined.json",
- "dataFileSourceType": "url",
- "validated": 4.23,
- "dynamicMarginTop": 0,
- "description": "Data last updated on
and presented through
.
View this dataset on data.cdc.gov.
",
- "uid": "chart1701791122773",
- "dataDescription": { "horizontal": false, "series": false },
- "version": "4.24.10"
- },
- "filter-dropdowns1701792379133": {
- "newViz": true,
- "openModal": false,
- "uid": "filter-dropdowns1701792379133",
- "type": "dashboardFilters",
- "visualizationType": "dashboardFilters",
- "sharedFilterIndexes": [0, 1],
- "filterBehavior": "Filter Change"
- },
- "filtered-text1701888972205": {
- "title": "",
- "type": "filtered-text",
- "theme": "theme-blue",
- "fontSize": "medium",
- "shadow": false,
- "filters": [],
- "visual": {
- "hideBackgroundColor": false,
- "background": false,
- "roundedBorders": false,
- "accent": false,
- "border": false,
- "borderColorTheme": false
- },
- "openModal": false,
- "uid": "filtered-text1701888972205",
- "visualizationType": "filtered-text",
- "dataKey": "resp-data.json",
- "dataDescription": { "horizontal": false, "series": false },
- "validated": 4.23,
- "textColumn": "county_state",
- "version": "4.24.7"
- },
- "filtered-text1701888980655": {
- "title": "Counties included in this area",
- "type": "filtered-text",
- "theme": "theme-blue",
- "fontSize": "medium",
- "shadow": false,
- "filters": [],
- "visual": {
- "hideBackgroundColor": false,
- "background": false,
- "roundedBorders": false,
- "accent": false,
- "border": false,
- "borderColorTheme": false
- },
- "openModal": false,
- "uid": "filtered-text1701888980655",
- "visualizationType": "filtered-text",
- "dataKey": "resp-data.json",
- "dataDescription": { "horizontal": false, "series": false },
- "validated": 4.23,
- "textColumn": "hsa_counties",
- "version": "4.24.7"
- }
- },
- "table": { "label": "Data Table", "show": false, "showDownloadUrl": false, "showVertical": true },
- "datasets": {
- "resp-data.json": {
- "dataFileSize": 1159724,
- "dataFileName": "resp-data.json",
- "dataFileSourceType": "file",
- "dataFileFormat": "JSON",
- "preview": true,
- "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSP%20Subsets/NSSPSubStateUnitedStates.json"
- }
- },
- "type": "dashboard",
- "uuid": 1701888964970,
- "version": "4.24.10"
-}
diff --git a/packages/dashboard/examples/filters/Alabama.json b/packages/dashboard/examples/filters/Alabama.json
deleted file mode 100644
index 6aead9b60b..0000000000
--- a/packages/dashboard/examples/filters/Alabama.json
+++ /dev/null
@@ -1,72 +0,0 @@
-[{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-,{"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"}
-]
diff --git a/packages/dashboard/examples/filters/Alaska.json b/packages/dashboard/examples/filters/Alaska.json
deleted file mode 100644
index c2267fdb6d..0000000000
--- a/packages/dashboard/examples/filters/Alaska.json
+++ /dev/null
@@ -1,1737 +0,0 @@
-[{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.68","percent_visits_covid":"2.34","percent_visits_influenza":"0.38","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.07","percent_visits_covid":"2.57","percent_visits_influenza":"0.52","percent_visits_rsv":"0.06","week_end":"2023-09-09"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.24","percent_visits_covid":"2.5","percent_visits_influenza":"0.71","percent_visits_rsv":"0.05","week_end":"2023-09-16"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.61","percent_visits_covid":"1.98","percent_visits_influenza":"1.62","percent_visits_rsv":"0.07","week_end":"2023-09-23"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.24","percent_visits_covid":"1.83","percent_visits_influenza":"2.42","percent_visits_rsv":"0.05","week_end":"2023-09-30"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.01","percent_visits_covid":"1.47","percent_visits_influenza":"2.48","percent_visits_rsv":"0.09","week_end":"2023-10-07"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.82","percent_visits_covid":"1.2","percent_visits_influenza":"4.52","percent_visits_rsv":"0.15","week_end":"2023-10-14"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Aleutians East Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Aleutians West Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.84","percent_visits_covid":"1.61","percent_visits_influenza":"0.14","percent_visits_rsv":"0.09","week_end":"2022-10-01"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.79","percent_visits_covid":"1.31","percent_visits_influenza":"0.24","percent_visits_rsv":"0.26","week_end":"2022-10-08"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.19","percent_visits_covid":"1.48","percent_visits_influenza":"0.32","percent_visits_rsv":"0.38","week_end":"2022-10-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.3","percent_visits_covid":"1.1","percent_visits_influenza":"0.76","percent_visits_rsv":"0.45","week_end":"2022-10-22"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.4","percent_visits_covid":"1.12","percent_visits_influenza":"1.17","percent_visits_rsv":"1.15","week_end":"2022-10-29"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.3","percent_visits_covid":"1.7","percent_visits_influenza":"1.95","percent_visits_rsv":"1.72","week_end":"2022-11-05"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.33","percent_visits_covid":"1.63","percent_visits_influenza":"3.74","percent_visits_rsv":"2.13","week_end":"2022-11-12"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"10.72","percent_visits_covid":"1.56","percent_visits_influenza":"6.82","percent_visits_rsv":"2.47","week_end":"2022-11-19"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"13.05","percent_visits_covid":"1.78","percent_visits_influenza":"8.67","percent_visits_rsv":"2.8","week_end":"2022-11-26"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"13.27","percent_visits_covid":"1.43","percent_visits_influenza":"9.85","percent_visits_rsv":"2.37","week_end":"2022-12-03"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"13.5","percent_visits_covid":"1.67","percent_visits_influenza":"10.16","percent_visits_rsv":"1.99","week_end":"2022-12-10"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"11.81","percent_visits_covid":"2.35","percent_visits_influenza":"7.92","percent_visits_rsv":"1.91","week_end":"2022-12-17"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.72","percent_visits_covid":"1.76","percent_visits_influenza":"5.6","percent_visits_rsv":"1.53","week_end":"2022-12-24"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.28","percent_visits_covid":"2.41","percent_visits_influenza":"4.58","percent_visits_rsv":"1.4","week_end":"2022-12-31"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.19","percent_visits_covid":"2.16","percent_visits_influenza":"2.64","percent_visits_rsv":"1.44","week_end":"2023-01-07"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.58","percent_visits_covid":"2.1","percent_visits_influenza":"1.54","percent_visits_rsv":"1.02","week_end":"2023-01-14"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.24","percent_visits_covid":"2.38","percent_visits_influenza":"0.85","percent_visits_rsv":"1.11","week_end":"2023-01-21"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.81","percent_visits_covid":"2.34","percent_visits_influenza":"0.64","percent_visits_rsv":"0.88","week_end":"2023-01-28"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.82","percent_visits_covid":"2.66","percent_visits_influenza":"0.55","percent_visits_rsv":"0.69","week_end":"2023-02-04"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.82","percent_visits_covid":"2.54","percent_visits_influenza":"0.58","percent_visits_rsv":"0.72","week_end":"2023-02-11"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.61","percent_visits_covid":"2.76","percent_visits_influenza":"0.47","percent_visits_rsv":"0.37","week_end":"2023-02-18"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.61","percent_visits_covid":"2.57","percent_visits_influenza":"0.57","percent_visits_rsv":"0.47","week_end":"2023-02-25"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.28","percent_visits_covid":"2.55","percent_visits_influenza":"0.45","percent_visits_rsv":"0.3","week_end":"2023-03-04"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.26","percent_visits_covid":"2.37","percent_visits_influenza":"0.43","percent_visits_rsv":"0.46","week_end":"2023-03-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.5","percent_visits_covid":"1.96","percent_visits_influenza":"0.26","percent_visits_rsv":"0.31","week_end":"2023-03-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.65","percent_visits_covid":"2.1","percent_visits_influenza":"0.27","percent_visits_rsv":"0.3","week_end":"2023-03-25"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.07","percent_visits_covid":"1.74","percent_visits_influenza":"0.23","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.89","percent_visits_covid":"1.54","percent_visits_influenza":"0.19","percent_visits_rsv":"0.19","week_end":"2023-04-08"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.86","percent_visits_covid":"1.44","percent_visits_influenza":"0.18","percent_visits_rsv":"0.24","week_end":"2023-04-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.77","percent_visits_covid":"1.22","percent_visits_influenza":"0.29","percent_visits_rsv":"0.28","week_end":"2023-04-22"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.2","percent_visits_covid":"0.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.13","week_end":"2023-04-29"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.73","percent_visits_covid":"1.23","percent_visits_influenza":"0.31","percent_visits_rsv":"0.21","week_end":"2023-05-06"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.21","percent_visits_covid":"0.97","percent_visits_influenza":"0.19","percent_visits_rsv":"0.05","week_end":"2023-05-13"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.94","percent_visits_covid":"0.82","percent_visits_influenza":"0.08","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.17","percent_visits_covid":"0.83","percent_visits_influenza":"0.29","percent_visits_rsv":"0.06","week_end":"2023-05-27"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.04","percent_visits_covid":"1.26","percent_visits_influenza":"0.7","percent_visits_rsv":"0.09","week_end":"2023-06-03"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.01","percent_visits_covid":"1.21","percent_visits_influenza":"0.78","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.39","percent_visits_covid":"1.71","percent_visits_influenza":"0.72","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.22","percent_visits_covid":"1.68","percent_visits_influenza":"0.59","percent_visits_rsv":"0.01","week_end":"2023-06-24"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.82","percent_visits_covid":"1.45","percent_visits_influenza":"0.34","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.25","percent_visits_covid":"1.98","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.89","percent_visits_covid":"1.67","percent_visits_influenza":"0.22","percent_visits_rsv":"0.01","week_end":"2023-07-15"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.3","percent_visits_covid":"1.92","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.16","percent_visits_covid":"1.97","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.91","percent_visits_covid":"1.69","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.07","percent_visits_covid":"1.71","percent_visits_influenza":"0.32","percent_visits_rsv":"0.07","week_end":"2023-08-12"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.88","percent_visits_covid":"1.62","percent_visits_influenza":"0.25","percent_visits_rsv":"0.01","week_end":"2023-08-19"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.26","percent_visits_covid":"1.95","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.83","percent_visits_covid":"1.24","percent_visits_influenza":"4.44","percent_visits_rsv":"0.18","week_end":"2023-10-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.98","percent_visits_covid":"1.29","percent_visits_influenza":"5.4","percent_visits_rsv":"0.38","week_end":"2023-10-28"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.83","percent_visits_covid":"1.39","percent_visits_influenza":"6.93","percent_visits_rsv":"0.59","week_end":"2023-11-04"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.68","percent_visits_covid":"1.01","percent_visits_influenza":"5.89","percent_visits_rsv":"0.84","week_end":"2023-11-11"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.27","percent_visits_covid":"0.92","percent_visits_influenza":"3.39","percent_visits_rsv":"1.05","week_end":"2023-11-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.2","percent_visits_covid":"1.11","percent_visits_influenza":"3.11","percent_visits_rsv":"0.99","week_end":"2023-11-25"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.46","percent_visits_covid":"1.06","percent_visits_influenza":"1.55","percent_visits_rsv":"0.97","week_end":"2023-12-02"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.72","percent_visits_covid":"2.68","percent_visits_influenza":"1.89","percent_visits_rsv":"0.31","week_end":"2023-01-14"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Anchorage Municipality","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Bethel Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Bethel Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Bristol Bay Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.34","percent_visits_covid":"2.19","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.75","percent_visits_covid":"2.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.29","week_end":"2022-10-08"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.24","percent_visits_covid":"1.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.55","week_end":"2022-10-22"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.5","percent_visits_covid":"1.77","percent_visits_influenza":"0.0","percent_visits_rsv":"0.74","week_end":"2022-10-29"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.91","percent_visits_covid":"3.64","percent_visits_influenza":"0.15","percent_visits_rsv":"2.27","week_end":"2022-11-05"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.98","percent_visits_covid":"2.13","percent_visits_influenza":"0.57","percent_visits_rsv":"2.56","week_end":"2022-11-12"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.7","percent_visits_covid":"1.52","percent_visits_influenza":"0.91","percent_visits_rsv":"2.43","week_end":"2022-11-19"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"8.61","percent_visits_covid":"1.75","percent_visits_influenza":"3.62","percent_visits_rsv":"3.25","week_end":"2022-11-26"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.56","percent_visits_covid":"0.39","percent_visits_influenza":"4.17","percent_visits_rsv":"3.13","week_end":"2022-12-03"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"12.47","percent_visits_covid":"0.4","percent_visits_influenza":"8.36","percent_visits_rsv":"3.85","week_end":"2022-12-10"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"13.75","percent_visits_covid":"1.75","percent_visits_influenza":"9.84","percent_visits_rsv":"2.43","week_end":"2022-12-17"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"9.62","percent_visits_covid":"1.49","percent_visits_influenza":"7.13","percent_visits_rsv":"1.33","week_end":"2022-12-24"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.38","percent_visits_covid":"1.49","percent_visits_influenza":"2.69","percent_visits_rsv":"1.2","week_end":"2022-12-31"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.37","percent_visits_covid":"3.46","percent_visits_influenza":"3.31","percent_visits_rsv":"0.6","week_end":"2023-01-07"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.56","percent_visits_covid":"3.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.44","week_end":"2023-01-21"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.97","percent_visits_covid":"3.65","percent_visits_influenza":"2.69","percent_visits_rsv":"0.95","week_end":"2023-01-28"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.38","percent_visits_covid":"5.34","percent_visits_influenza":"1.73","percent_visits_rsv":"0.78","week_end":"2023-02-04"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.42","percent_visits_covid":"4.03","percent_visits_influenza":"2.09","percent_visits_rsv":"0.3","week_end":"2023-02-11"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.63","percent_visits_covid":"3.9","percent_visits_influenza":"1.73","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.19","percent_visits_covid":"4.57","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.35","percent_visits_covid":"4.16","percent_visits_influenza":"1.19","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.49","percent_visits_covid":"2.81","percent_visits_influenza":"1.4","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.59","percent_visits_covid":"1.52","percent_visits_influenza":"1.07","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.33","percent_visits_covid":"2.22","percent_visits_influenza":"0.83","percent_visits_rsv":"0.28","week_end":"2023-03-25"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.14","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.77","percent_visits_covid":"0.31","percent_visits_influenza":"0.46","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.96","percent_visits_covid":"0.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.97","percent_visits_covid":"1.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.77","percent_visits_covid":"0.61","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.45","percent_visits_covid":"0.3","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.82","percent_visits_covid":"2.42","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.44","percent_visits_covid":"1.83","percent_visits_influenza":"0.61","percent_visits_rsv":"0.15","week_end":"2023-06-03"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.01","percent_visits_covid":"1.78","percent_visits_influenza":"1.37","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.87","percent_visits_covid":"2.44","percent_visits_influenza":"0.86","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.54","percent_visits_covid":"2.97","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.3","percent_visits_covid":"1.79","percent_visits_influenza":"0.38","percent_visits_rsv":"0.13","week_end":"2023-07-01"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.1","percent_visits_covid":"2.97","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.0","percent_visits_covid":"1.86","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.75","percent_visits_covid":"2.61","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.11","percent_visits_covid":"2.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.38","percent_visits_covid":"1.24","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.85","percent_visits_covid":"3.56","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.0","percent_visits_covid":"1.85","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.01","percent_visits_covid":"2.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-08-26"}
-,{"county":"Denali Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.73","percent_visits_covid":"4.45","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.79","percent_visits_covid":"3.67","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.94","percent_visits_covid":"5.17","percent_visits_influenza":"0.78","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.16","percent_visits_covid":"3.88","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.06","percent_visits_covid":"3.01","percent_visits_influenza":"0.9","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.06","percent_visits_influenza":"0.63","percent_visits_rsv":"0.16","week_end":"2023-10-07"}
-,{"county":"Denali Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.98","percent_visits_covid":"2.04","percent_visits_influenza":"0.94","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.67","percent_visits_covid":"1.3","percent_visits_influenza":"4.38","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.44","percent_visits_covid":"1.56","percent_visits_influenza":"3.73","percent_visits_rsv":"0.16","week_end":"2023-10-28"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.06","percent_visits_covid":"2.23","percent_visits_influenza":"2.83","percent_visits_rsv":"0.45","week_end":"2023-11-04"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.55","percent_visits_covid":"1.41","percent_visits_influenza":"2.51","percent_visits_rsv":"0.78","week_end":"2023-11-11"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.64","percent_visits_covid":"2.25","percent_visits_influenza":"2.42","percent_visits_rsv":"1.29","week_end":"2023-11-18"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.63","percent_visits_covid":"1.77","percent_visits_influenza":"3.05","percent_visits_rsv":"0.8","week_end":"2023-11-25"}
-,{"county":"Denali Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.87","percent_visits_covid":"0.78","percent_visits_influenza":"0.78","percent_visits_rsv":"0.31","week_end":"2023-12-02"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Dillingham Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.34","percent_visits_covid":"2.19","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.75","percent_visits_covid":"2.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.29","week_end":"2022-10-08"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.24","percent_visits_covid":"1.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.55","week_end":"2022-10-22"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.5","percent_visits_covid":"1.77","percent_visits_influenza":"0.0","percent_visits_rsv":"0.74","week_end":"2022-10-29"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.91","percent_visits_covid":"3.64","percent_visits_influenza":"0.15","percent_visits_rsv":"2.27","week_end":"2022-11-05"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.98","percent_visits_covid":"2.13","percent_visits_influenza":"0.57","percent_visits_rsv":"2.56","week_end":"2022-11-12"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.7","percent_visits_covid":"1.52","percent_visits_influenza":"0.91","percent_visits_rsv":"2.43","week_end":"2022-11-19"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"8.61","percent_visits_covid":"1.75","percent_visits_influenza":"3.62","percent_visits_rsv":"3.25","week_end":"2022-11-26"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.56","percent_visits_covid":"0.39","percent_visits_influenza":"4.17","percent_visits_rsv":"3.13","week_end":"2022-12-03"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"12.47","percent_visits_covid":"0.4","percent_visits_influenza":"8.36","percent_visits_rsv":"3.85","week_end":"2022-12-10"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"13.75","percent_visits_covid":"1.75","percent_visits_influenza":"9.84","percent_visits_rsv":"2.43","week_end":"2022-12-17"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"9.62","percent_visits_covid":"1.49","percent_visits_influenza":"7.13","percent_visits_rsv":"1.33","week_end":"2022-12-24"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.38","percent_visits_covid":"1.49","percent_visits_influenza":"2.69","percent_visits_rsv":"1.2","week_end":"2022-12-31"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.37","percent_visits_covid":"3.46","percent_visits_influenza":"3.31","percent_visits_rsv":"0.6","week_end":"2023-01-07"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.72","percent_visits_covid":"2.68","percent_visits_influenza":"1.89","percent_visits_rsv":"0.31","week_end":"2023-01-14"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.56","percent_visits_covid":"3.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.44","week_end":"2023-01-21"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.97","percent_visits_covid":"3.65","percent_visits_influenza":"2.69","percent_visits_rsv":"0.95","week_end":"2023-01-28"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.38","percent_visits_covid":"5.34","percent_visits_influenza":"1.73","percent_visits_rsv":"0.78","week_end":"2023-02-04"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.42","percent_visits_covid":"4.03","percent_visits_influenza":"2.09","percent_visits_rsv":"0.3","week_end":"2023-02-11"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.63","percent_visits_covid":"3.9","percent_visits_influenza":"1.73","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.19","percent_visits_covid":"4.57","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.35","percent_visits_covid":"4.16","percent_visits_influenza":"1.19","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.49","percent_visits_covid":"2.81","percent_visits_influenza":"1.4","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.59","percent_visits_covid":"1.52","percent_visits_influenza":"1.07","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.33","percent_visits_covid":"2.22","percent_visits_influenza":"0.83","percent_visits_rsv":"0.28","week_end":"2023-03-25"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.14","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.77","percent_visits_covid":"0.31","percent_visits_influenza":"0.46","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.96","percent_visits_covid":"0.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.97","percent_visits_covid":"1.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.77","percent_visits_covid":"0.61","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.45","percent_visits_covid":"0.3","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.82","percent_visits_covid":"2.42","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.44","percent_visits_covid":"1.83","percent_visits_influenza":"0.61","percent_visits_rsv":"0.15","week_end":"2023-06-03"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.01","percent_visits_covid":"1.78","percent_visits_influenza":"1.37","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.87","percent_visits_covid":"2.44","percent_visits_influenza":"0.86","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.54","percent_visits_covid":"2.97","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.3","percent_visits_covid":"1.79","percent_visits_influenza":"0.38","percent_visits_rsv":"0.13","week_end":"2023-07-01"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.1","percent_visits_covid":"2.97","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.0","percent_visits_covid":"1.86","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.75","percent_visits_covid":"2.61","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.11","percent_visits_covid":"2.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.38","percent_visits_covid":"1.24","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.85","percent_visits_covid":"3.56","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.0","percent_visits_covid":"1.85","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.01","percent_visits_covid":"2.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-08-26"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.73","percent_visits_covid":"4.45","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.79","percent_visits_covid":"3.67","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.94","percent_visits_covid":"5.17","percent_visits_influenza":"0.78","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.16","percent_visits_covid":"3.88","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.06","percent_visits_covid":"3.01","percent_visits_influenza":"0.9","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.06","percent_visits_influenza":"0.63","percent_visits_rsv":"0.16","week_end":"2023-10-07"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.98","percent_visits_covid":"2.04","percent_visits_influenza":"0.94","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.67","percent_visits_covid":"1.3","percent_visits_influenza":"4.38","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.44","percent_visits_covid":"1.56","percent_visits_influenza":"3.73","percent_visits_rsv":"0.16","week_end":"2023-10-28"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.06","percent_visits_covid":"2.23","percent_visits_influenza":"2.83","percent_visits_rsv":"0.45","week_end":"2023-11-04"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.55","percent_visits_covid":"1.41","percent_visits_influenza":"2.51","percent_visits_rsv":"0.78","week_end":"2023-11-11"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.64","percent_visits_covid":"2.25","percent_visits_influenza":"2.42","percent_visits_rsv":"1.29","week_end":"2023-11-18"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.63","percent_visits_covid":"1.77","percent_visits_influenza":"3.05","percent_visits_rsv":"0.8","week_end":"2023-11-25"}
-,{"county":"Fairbanks North Star Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.87","percent_visits_covid":"0.78","percent_visits_influenza":"0.78","percent_visits_rsv":"0.31","week_end":"2023-12-02"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.1","percent_visits_covid":"2.1","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.77","percent_visits_covid":"1.42","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.94","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.92","percent_visits_covid":"0.65","percent_visits_influenza":"0.97","percent_visits_rsv":"1.3","week_end":"2022-10-22"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"0.32","percent_visits_influenza":"1.58","percent_visits_rsv":"1.27","week_end":"2022-10-29"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.6","percent_visits_covid":"1.27","percent_visits_influenza":"2.87","percent_visits_rsv":"4.78","week_end":"2022-11-05"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.02","percent_visits_covid":"1.43","percent_visits_influenza":"3.44","percent_visits_rsv":"3.44","week_end":"2022-11-12"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"12.42","percent_visits_covid":"1.21","percent_visits_influenza":"8.48","percent_visits_rsv":"2.73","week_end":"2022-11-19"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.56","percent_visits_covid":"0.83","percent_visits_influenza":"11.11","percent_visits_rsv":"3.61","week_end":"2022-11-26"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.08","percent_visits_covid":"1.23","percent_visits_influenza":"11.08","percent_visits_rsv":"3.08","week_end":"2022-12-03"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.86","percent_visits_covid":"0.86","percent_visits_influenza":"16.0","percent_visits_rsv":"2.57","week_end":"2022-12-10"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.85","percent_visits_covid":"1.6","percent_visits_influenza":"16.61","percent_visits_rsv":"1.92","week_end":"2022-12-17"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"11.04","percent_visits_covid":"0.97","percent_visits_influenza":"9.42","percent_visits_rsv":"0.65","week_end":"2022-12-24"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"10.85","percent_visits_covid":"4.07","percent_visits_influenza":"5.08","percent_visits_rsv":"2.03","week_end":"2022-12-31"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.19","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"1.73","week_end":"2023-01-07"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.64","percent_visits_covid":"1.09","percent_visits_influenza":"0.36","percent_visits_rsv":"2.18","week_end":"2023-01-14"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.99","percent_visits_covid":"1.8","percent_visits_influenza":"0.3","percent_visits_rsv":"0.9","week_end":"2023-01-21"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.05","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.41","week_end":"2023-01-28"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.96","percent_visits_covid":"0.64","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"2.18","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.7","percent_visits_covid":"2.22","percent_visits_influenza":"0.37","percent_visits_rsv":"1.11","week_end":"2023-02-18"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.69","percent_visits_covid":"2.58","percent_visits_influenza":"0.37","percent_visits_rsv":"0.74","week_end":"2023-02-25"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-04"}
-,{"county":"Haines Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.6","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.32","week_end":"2023-03-11"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.84","percent_visits_covid":"3.87","percent_visits_influenza":"0.0","percent_visits_rsv":"1.29","week_end":"2023-03-18"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"2.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.35","week_end":"2023-03-25"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.19","percent_visits_covid":"4.19","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.74","percent_visits_covid":"3.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.08","percent_visits_covid":"3.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.54","percent_visits_covid":"2.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.08","percent_visits_covid":"2.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.89","percent_visits_covid":"0.59","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.88","percent_visits_covid":"1.34","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.47","percent_visits_covid":"1.64","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.07","percent_visits_covid":"1.02","percent_visits_influenza":"2.05","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.03","percent_visits_covid":"3.07","percent_visits_influenza":"2.23","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.29","percent_visits_covid":"2.28","percent_visits_influenza":"1.52","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"1.96","percent_visits_influenza":"0.84","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.81","percent_visits_covid":"3.54","percent_visits_influenza":"1.27","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.14","percent_visits_covid":"2.36","percent_visits_influenza":"0.79","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.0","percent_visits_covid":"2.25","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.51","percent_visits_covid":"2.26","percent_visits_influenza":"0.5","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.82","percent_visits_covid":"1.98","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.46","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.46","percent_visits_covid":"3.17","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.52","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.2","percent_visits_covid":"4.2","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.11","percent_visits_covid":"2.85","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.93","percent_visits_covid":"1.29","percent_visits_influenza":"0.32","percent_visits_rsv":"0.32","week_end":"2023-09-16"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.13","percent_visits_covid":"1.99","percent_visits_influenza":"1.14","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"6.48","percent_visits_covid":"3.7","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.48","percent_visits_covid":"3.14","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.15","percent_visits_covid":"1.23","percent_visits_influenza":"0.92","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.2","percent_visits_covid":"0.63","percent_visits_influenza":"1.57","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.06","percent_visits_covid":"0.69","percent_visits_influenza":"1.03","percent_visits_rsv":"0.34","week_end":"2023-10-28"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.3","percent_visits_covid":"1.1","percent_visits_influenza":"2.2","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.1","percent_visits_covid":"0.37","percent_visits_influenza":"0.74","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Haines Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.9","percent_visits_covid":"0.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.65","week_end":"2023-11-18"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.57","percent_visits_covid":"0.39","percent_visits_influenza":"0.79","percent_visits_rsv":"0.39","week_end":"2023-11-25"}
-,{"county":"Haines Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.87","percent_visits_covid":"0.37","percent_visits_influenza":"1.12","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.1","percent_visits_covid":"2.1","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.77","percent_visits_covid":"1.42","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.94","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.92","percent_visits_covid":"0.65","percent_visits_influenza":"0.97","percent_visits_rsv":"1.3","week_end":"2022-10-22"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"0.32","percent_visits_influenza":"1.58","percent_visits_rsv":"1.27","week_end":"2022-10-29"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.6","percent_visits_covid":"1.27","percent_visits_influenza":"2.87","percent_visits_rsv":"4.78","week_end":"2022-11-05"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.02","percent_visits_covid":"1.43","percent_visits_influenza":"3.44","percent_visits_rsv":"3.44","week_end":"2022-11-12"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"12.42","percent_visits_covid":"1.21","percent_visits_influenza":"8.48","percent_visits_rsv":"2.73","week_end":"2022-11-19"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.56","percent_visits_covid":"0.83","percent_visits_influenza":"11.11","percent_visits_rsv":"3.61","week_end":"2022-11-26"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.08","percent_visits_covid":"1.23","percent_visits_influenza":"11.08","percent_visits_rsv":"3.08","week_end":"2022-12-03"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.86","percent_visits_covid":"0.86","percent_visits_influenza":"16.0","percent_visits_rsv":"2.57","week_end":"2022-12-10"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.85","percent_visits_covid":"1.6","percent_visits_influenza":"16.61","percent_visits_rsv":"1.92","week_end":"2022-12-17"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"11.04","percent_visits_covid":"0.97","percent_visits_influenza":"9.42","percent_visits_rsv":"0.65","week_end":"2022-12-24"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"10.85","percent_visits_covid":"4.07","percent_visits_influenza":"5.08","percent_visits_rsv":"2.03","week_end":"2022-12-31"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.19","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"1.73","week_end":"2023-01-07"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.64","percent_visits_covid":"1.09","percent_visits_influenza":"0.36","percent_visits_rsv":"2.18","week_end":"2023-01-14"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.99","percent_visits_covid":"1.8","percent_visits_influenza":"0.3","percent_visits_rsv":"0.9","week_end":"2023-01-21"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.05","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.41","week_end":"2023-01-28"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.96","percent_visits_covid":"0.64","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"2.18","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.7","percent_visits_covid":"2.22","percent_visits_influenza":"0.37","percent_visits_rsv":"1.11","week_end":"2023-02-18"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.69","percent_visits_covid":"2.58","percent_visits_influenza":"0.37","percent_visits_rsv":"0.74","week_end":"2023-02-25"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-04"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.6","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.32","week_end":"2023-03-11"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.84","percent_visits_covid":"3.87","percent_visits_influenza":"0.0","percent_visits_rsv":"1.29","week_end":"2023-03-18"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"2.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.35","week_end":"2023-03-25"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.19","percent_visits_covid":"4.19","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.74","percent_visits_covid":"3.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.08","percent_visits_covid":"3.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.54","percent_visits_covid":"2.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.08","percent_visits_covid":"2.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.89","percent_visits_covid":"0.59","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.88","percent_visits_covid":"1.34","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.47","percent_visits_covid":"1.64","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.07","percent_visits_covid":"1.02","percent_visits_influenza":"2.05","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.03","percent_visits_covid":"3.07","percent_visits_influenza":"2.23","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.29","percent_visits_covid":"2.28","percent_visits_influenza":"1.52","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"1.96","percent_visits_influenza":"0.84","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.81","percent_visits_covid":"3.54","percent_visits_influenza":"1.27","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.14","percent_visits_covid":"2.36","percent_visits_influenza":"0.79","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.0","percent_visits_covid":"2.25","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.51","percent_visits_covid":"2.26","percent_visits_influenza":"0.5","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.82","percent_visits_covid":"1.98","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.46","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.46","percent_visits_covid":"3.17","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.52","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.2","percent_visits_covid":"4.2","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.11","percent_visits_covid":"2.85","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.93","percent_visits_covid":"1.29","percent_visits_influenza":"0.32","percent_visits_rsv":"0.32","week_end":"2023-09-16"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.13","percent_visits_covid":"1.99","percent_visits_influenza":"1.14","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"6.48","percent_visits_covid":"3.7","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.48","percent_visits_covid":"3.14","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.15","percent_visits_covid":"1.23","percent_visits_influenza":"0.92","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.2","percent_visits_covid":"0.63","percent_visits_influenza":"1.57","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.06","percent_visits_covid":"0.69","percent_visits_influenza":"1.03","percent_visits_rsv":"0.34","week_end":"2023-10-28"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.3","percent_visits_covid":"1.1","percent_visits_influenza":"2.2","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.1","percent_visits_covid":"0.37","percent_visits_influenza":"0.74","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.9","percent_visits_covid":"0.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.65","week_end":"2023-11-18"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.57","percent_visits_covid":"0.39","percent_visits_influenza":"0.79","percent_visits_rsv":"0.39","week_end":"2023-11-25"}
-,{"county":"Juneau City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.87","percent_visits_covid":"0.37","percent_visits_influenza":"1.12","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.5","percent_visits_covid":"1.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Kenai Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.89","percent_visits_covid":"1.73","percent_visits_influenza":"0.0","percent_visits_rsv":"1.16","week_end":"2022-10-01"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.28","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.28","week_end":"2022-10-08"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"7.36","percent_visits_covid":"1.84","percent_visits_influenza":"0.0","percent_visits_rsv":"5.52","week_end":"2022-10-15"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.25","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.25","week_end":"2022-10-22"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.37","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.37","week_end":"2022-10-29"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.98","percent_visits_covid":"1.74","percent_visits_influenza":"5.23","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"18.18","percent_visits_covid":"2.02","percent_visits_influenza":"16.67","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"29.33","percent_visits_covid":"0.48","percent_visits_influenza":"28.37","percent_visits_rsv":"0.48","week_end":"2022-11-19"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"17.82","percent_visits_covid":"1.49","percent_visits_influenza":"16.83","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"11.18","percent_visits_covid":"1.32","percent_visits_influenza":"9.87","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.96","percent_visits_covid":"0.63","percent_visits_influenza":"5.7","percent_visits_rsv":"0.63","week_end":"2022-12-10"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.73","percent_visits_covid":"3.18","percent_visits_influenza":"3.82","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.92","percent_visits_covid":"1.46","percent_visits_influenza":"0.73","percent_visits_rsv":"0.73","week_end":"2022-12-24"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.59","percent_visits_covid":"4.19","percent_visits_influenza":"1.8","percent_visits_rsv":"0.6","week_end":"2022-12-31"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.54","percent_visits_covid":"0.77","percent_visits_influenza":"0.77","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.6","percent_visits_covid":"0.65","percent_visits_influenza":"0.65","percent_visits_rsv":"1.3","week_end":"2023-01-14"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.7","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.78","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.78","week_end":"2023-02-25"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.79","percent_visits_covid":"0.79","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.05","percent_visits_covid":"2.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.46","percent_visits_covid":"1.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.35","percent_visits_covid":"1.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.23","percent_visits_covid":"1.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.15","percent_visits_covid":"3.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.92","percent_visits_covid":"2.92","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.03","percent_visits_covid":"3.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.4","percent_visits_covid":"2.4","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.94","percent_visits_covid":"2.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.91","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.76","percent_visits_covid":"4.29","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.68","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.79","percent_visits_covid":"5.02","percent_visits_influenza":"3.77","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.99","percent_visits_covid":"6.88","percent_visits_influenza":"2.12","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.35","percent_visits_covid":"3.26","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.0","percent_visits_covid":"2.86","percent_visits_influenza":"0.57","percent_visits_rsv":"0.57","week_end":"2023-06-24"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.72","percent_visits_covid":"1.63","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.5","percent_visits_covid":"2.5","percent_visits_influenza":"2.5","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.09","percent_visits_covid":"3.09","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.95","percent_visits_covid":"3.85","percent_visits_influenza":"1.1","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.89","percent_visits_covid":"4.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.11","percent_visits_influenza":"1.11","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.34","percent_visits_covid":"1.94","percent_visits_influenza":"3.4","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.25","percent_visits_covid":"5.29","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.97","percent_visits_covid":"5.47","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"7.98","percent_visits_covid":"7.45","percent_visits_influenza":"1.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.03","percent_visits_covid":"3.35","percent_visits_influenza":"1.68","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.09","percent_visits_covid":"5.2","percent_visits_influenza":"2.89","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.0","percent_visits_covid":"2.0","percent_visits_influenza":"2.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.67","percent_visits_covid":"4.0","percent_visits_influenza":"0.67","percent_visits_rsv":"0.67","week_end":"2023-10-07"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.85","percent_visits_covid":"1.92","percent_visits_influenza":"1.92","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.85","percent_visits_covid":"0.93","percent_visits_influenza":"0.93","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.71","percent_visits_covid":"0.71","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.57","percent_visits_covid":"0.71","percent_visits_influenza":"2.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.53","percent_visits_covid":"0.76","percent_visits_influenza":"0.76","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-25"}
-,{"county":"Ketchikan Gateway Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.74","percent_visits_covid":"0.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Kodiak Island Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Lake and Peninsula Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Matanuska-Susitna Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Nome Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Nome Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Nome Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"North Slope Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"North Slope Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"North Slope Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Northwest Arctic Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.89","percent_visits_covid":"1.73","percent_visits_influenza":"0.0","percent_visits_rsv":"1.16","week_end":"2022-10-01"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.28","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.28","week_end":"2022-10-08"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"7.36","percent_visits_covid":"1.84","percent_visits_influenza":"0.0","percent_visits_rsv":"5.52","week_end":"2022-10-15"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.25","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.25","week_end":"2022-10-22"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.37","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.37","week_end":"2022-10-29"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.98","percent_visits_covid":"1.74","percent_visits_influenza":"5.23","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"18.18","percent_visits_covid":"2.02","percent_visits_influenza":"16.67","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"29.33","percent_visits_covid":"0.48","percent_visits_influenza":"28.37","percent_visits_rsv":"0.48","week_end":"2022-11-19"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"17.82","percent_visits_covid":"1.49","percent_visits_influenza":"16.83","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"11.18","percent_visits_covid":"1.32","percent_visits_influenza":"9.87","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.96","percent_visits_covid":"0.63","percent_visits_influenza":"5.7","percent_visits_rsv":"0.63","week_end":"2022-12-10"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.73","percent_visits_covid":"3.18","percent_visits_influenza":"3.82","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.92","percent_visits_covid":"1.46","percent_visits_influenza":"0.73","percent_visits_rsv":"0.73","week_end":"2022-12-24"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.59","percent_visits_covid":"4.19","percent_visits_influenza":"1.8","percent_visits_rsv":"0.6","week_end":"2022-12-31"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.54","percent_visits_covid":"0.77","percent_visits_influenza":"0.77","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.6","percent_visits_covid":"0.65","percent_visits_influenza":"0.65","percent_visits_rsv":"1.3","week_end":"2023-01-14"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.7","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.5","percent_visits_covid":"1.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.78","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.78","week_end":"2023-02-25"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.79","percent_visits_covid":"0.79","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.05","percent_visits_covid":"2.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.46","percent_visits_covid":"1.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.35","percent_visits_covid":"1.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.23","percent_visits_covid":"1.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.15","percent_visits_covid":"3.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.92","percent_visits_covid":"2.92","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.03","percent_visits_covid":"3.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.4","percent_visits_covid":"2.4","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.94","percent_visits_covid":"2.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.91","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.76","percent_visits_covid":"4.29","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.68","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.79","percent_visits_covid":"5.02","percent_visits_influenza":"3.77","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.99","percent_visits_covid":"6.88","percent_visits_influenza":"2.12","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.35","percent_visits_covid":"3.26","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.0","percent_visits_covid":"2.86","percent_visits_influenza":"0.57","percent_visits_rsv":"0.57","week_end":"2023-06-24"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.72","percent_visits_covid":"1.63","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.5","percent_visits_covid":"2.5","percent_visits_influenza":"2.5","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.09","percent_visits_covid":"3.09","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.95","percent_visits_covid":"3.85","percent_visits_influenza":"1.1","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.89","percent_visits_covid":"4.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.11","percent_visits_influenza":"1.11","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.34","percent_visits_covid":"1.94","percent_visits_influenza":"3.4","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.25","percent_visits_covid":"5.29","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.97","percent_visits_covid":"5.47","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"7.98","percent_visits_covid":"7.45","percent_visits_influenza":"1.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.03","percent_visits_covid":"3.35","percent_visits_influenza":"1.68","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.09","percent_visits_covid":"5.2","percent_visits_influenza":"2.89","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.0","percent_visits_covid":"2.0","percent_visits_influenza":"2.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.67","percent_visits_covid":"4.0","percent_visits_influenza":"0.67","percent_visits_rsv":"0.67","week_end":"2023-10-07"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.85","percent_visits_covid":"1.92","percent_visits_influenza":"1.92","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.85","percent_visits_covid":"0.93","percent_visits_influenza":"0.93","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.71","percent_visits_covid":"0.71","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.57","percent_visits_covid":"0.71","percent_visits_influenza":"2.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.53","percent_visits_covid":"0.76","percent_visits_influenza":"0.76","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-25"}
-,{"county":"Prince of Wales-Outer Ketchikan Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.74","percent_visits_covid":"0.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.1","percent_visits_covid":"2.1","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.77","percent_visits_covid":"1.42","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.94","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.92","percent_visits_covid":"0.65","percent_visits_influenza":"0.97","percent_visits_rsv":"1.3","week_end":"2022-10-22"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"0.32","percent_visits_influenza":"1.58","percent_visits_rsv":"1.27","week_end":"2022-10-29"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.6","percent_visits_covid":"1.27","percent_visits_influenza":"2.87","percent_visits_rsv":"4.78","week_end":"2022-11-05"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.02","percent_visits_covid":"1.43","percent_visits_influenza":"3.44","percent_visits_rsv":"3.44","week_end":"2022-11-12"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"12.42","percent_visits_covid":"1.21","percent_visits_influenza":"8.48","percent_visits_rsv":"2.73","week_end":"2022-11-19"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.56","percent_visits_covid":"0.83","percent_visits_influenza":"11.11","percent_visits_rsv":"3.61","week_end":"2022-11-26"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.08","percent_visits_covid":"1.23","percent_visits_influenza":"11.08","percent_visits_rsv":"3.08","week_end":"2022-12-03"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.86","percent_visits_covid":"0.86","percent_visits_influenza":"16.0","percent_visits_rsv":"2.57","week_end":"2022-12-10"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.85","percent_visits_covid":"1.6","percent_visits_influenza":"16.61","percent_visits_rsv":"1.92","week_end":"2022-12-17"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"11.04","percent_visits_covid":"0.97","percent_visits_influenza":"9.42","percent_visits_rsv":"0.65","week_end":"2022-12-24"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"10.85","percent_visits_covid":"4.07","percent_visits_influenza":"5.08","percent_visits_rsv":"2.03","week_end":"2022-12-31"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.19","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"1.73","week_end":"2023-01-07"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.64","percent_visits_covid":"1.09","percent_visits_influenza":"0.36","percent_visits_rsv":"2.18","week_end":"2023-01-14"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.99","percent_visits_covid":"1.8","percent_visits_influenza":"0.3","percent_visits_rsv":"0.9","week_end":"2023-01-21"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.05","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.41","week_end":"2023-01-28"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.96","percent_visits_covid":"0.64","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"2.18","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.7","percent_visits_covid":"2.22","percent_visits_influenza":"0.37","percent_visits_rsv":"1.11","week_end":"2023-02-18"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.69","percent_visits_covid":"2.58","percent_visits_influenza":"0.37","percent_visits_rsv":"0.74","week_end":"2023-02-25"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-04"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.6","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.32","week_end":"2023-03-11"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.84","percent_visits_covid":"3.87","percent_visits_influenza":"0.0","percent_visits_rsv":"1.29","week_end":"2023-03-18"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"2.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.35","week_end":"2023-03-25"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.19","percent_visits_covid":"4.19","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.74","percent_visits_covid":"3.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.08","percent_visits_covid":"3.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.54","percent_visits_covid":"2.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.08","percent_visits_covid":"2.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.89","percent_visits_covid":"0.59","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.88","percent_visits_covid":"1.34","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.47","percent_visits_covid":"1.64","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.07","percent_visits_covid":"1.02","percent_visits_influenza":"2.05","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.03","percent_visits_covid":"3.07","percent_visits_influenza":"2.23","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.29","percent_visits_covid":"2.28","percent_visits_influenza":"1.52","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"1.96","percent_visits_influenza":"0.84","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.81","percent_visits_covid":"3.54","percent_visits_influenza":"1.27","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.14","percent_visits_covid":"2.36","percent_visits_influenza":"0.79","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.0","percent_visits_covid":"2.25","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.51","percent_visits_covid":"2.26","percent_visits_influenza":"0.5","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.82","percent_visits_covid":"1.98","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.46","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.46","percent_visits_covid":"3.17","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.52","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.2","percent_visits_covid":"4.2","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.11","percent_visits_covid":"2.85","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.93","percent_visits_covid":"1.29","percent_visits_influenza":"0.32","percent_visits_rsv":"0.32","week_end":"2023-09-16"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.13","percent_visits_covid":"1.99","percent_visits_influenza":"1.14","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"6.48","percent_visits_covid":"3.7","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.48","percent_visits_covid":"3.14","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.15","percent_visits_covid":"1.23","percent_visits_influenza":"0.92","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.2","percent_visits_covid":"0.63","percent_visits_influenza":"1.57","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.06","percent_visits_covid":"0.69","percent_visits_influenza":"1.03","percent_visits_rsv":"0.34","week_end":"2023-10-28"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.3","percent_visits_covid":"1.1","percent_visits_influenza":"2.2","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.1","percent_visits_covid":"0.37","percent_visits_influenza":"0.74","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.9","percent_visits_covid":"0.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.65","week_end":"2023-11-18"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.57","percent_visits_covid":"0.39","percent_visits_influenza":"0.79","percent_visits_rsv":"0.39","week_end":"2023-11-25"}
-,{"county":"Sitka City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.87","percent_visits_covid":"0.37","percent_visits_influenza":"1.12","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.1","percent_visits_covid":"2.1","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.77","percent_visits_covid":"1.42","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.94","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.92","percent_visits_covid":"0.65","percent_visits_influenza":"0.97","percent_visits_rsv":"1.3","week_end":"2022-10-22"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"0.32","percent_visits_influenza":"1.58","percent_visits_rsv":"1.27","week_end":"2022-10-29"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.6","percent_visits_covid":"1.27","percent_visits_influenza":"2.87","percent_visits_rsv":"4.78","week_end":"2022-11-05"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.02","percent_visits_covid":"1.43","percent_visits_influenza":"3.44","percent_visits_rsv":"3.44","week_end":"2022-11-12"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"12.42","percent_visits_covid":"1.21","percent_visits_influenza":"8.48","percent_visits_rsv":"2.73","week_end":"2022-11-19"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.56","percent_visits_covid":"0.83","percent_visits_influenza":"11.11","percent_visits_rsv":"3.61","week_end":"2022-11-26"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.08","percent_visits_covid":"1.23","percent_visits_influenza":"11.08","percent_visits_rsv":"3.08","week_end":"2022-12-03"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.86","percent_visits_covid":"0.86","percent_visits_influenza":"16.0","percent_visits_rsv":"2.57","week_end":"2022-12-10"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.85","percent_visits_covid":"1.6","percent_visits_influenza":"16.61","percent_visits_rsv":"1.92","week_end":"2022-12-17"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"11.04","percent_visits_covid":"0.97","percent_visits_influenza":"9.42","percent_visits_rsv":"0.65","week_end":"2022-12-24"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"10.85","percent_visits_covid":"4.07","percent_visits_influenza":"5.08","percent_visits_rsv":"2.03","week_end":"2022-12-31"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.19","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"1.73","week_end":"2023-01-07"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.64","percent_visits_covid":"1.09","percent_visits_influenza":"0.36","percent_visits_rsv":"2.18","week_end":"2023-01-14"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.99","percent_visits_covid":"1.8","percent_visits_influenza":"0.3","percent_visits_rsv":"0.9","week_end":"2023-01-21"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.05","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.41","week_end":"2023-01-28"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.96","percent_visits_covid":"0.64","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"2.18","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.7","percent_visits_covid":"2.22","percent_visits_influenza":"0.37","percent_visits_rsv":"1.11","week_end":"2023-02-18"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.69","percent_visits_covid":"2.58","percent_visits_influenza":"0.37","percent_visits_rsv":"0.74","week_end":"2023-02-25"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-04"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.6","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.32","week_end":"2023-03-11"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.84","percent_visits_covid":"3.87","percent_visits_influenza":"0.0","percent_visits_rsv":"1.29","week_end":"2023-03-18"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"2.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.35","week_end":"2023-03-25"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.19","percent_visits_covid":"4.19","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.74","percent_visits_covid":"3.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.08","percent_visits_covid":"3.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.54","percent_visits_covid":"2.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.08","percent_visits_covid":"2.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.89","percent_visits_covid":"0.59","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.88","percent_visits_covid":"1.34","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.47","percent_visits_covid":"1.64","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.07","percent_visits_covid":"1.02","percent_visits_influenza":"2.05","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.03","percent_visits_covid":"3.07","percent_visits_influenza":"2.23","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.29","percent_visits_covid":"2.28","percent_visits_influenza":"1.52","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"1.96","percent_visits_influenza":"0.84","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.81","percent_visits_covid":"3.54","percent_visits_influenza":"1.27","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.14","percent_visits_covid":"2.36","percent_visits_influenza":"0.79","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.0","percent_visits_covid":"2.25","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.51","percent_visits_covid":"2.26","percent_visits_influenza":"0.5","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.82","percent_visits_covid":"1.98","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.46","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.46","percent_visits_covid":"3.17","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.52","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.2","percent_visits_covid":"4.2","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.11","percent_visits_covid":"2.85","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.93","percent_visits_covid":"1.29","percent_visits_influenza":"0.32","percent_visits_rsv":"0.32","week_end":"2023-09-16"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.13","percent_visits_covid":"1.99","percent_visits_influenza":"1.14","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"6.48","percent_visits_covid":"3.7","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.48","percent_visits_covid":"3.14","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.15","percent_visits_covid":"1.23","percent_visits_influenza":"0.92","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.2","percent_visits_covid":"0.63","percent_visits_influenza":"1.57","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.06","percent_visits_covid":"0.69","percent_visits_influenza":"1.03","percent_visits_rsv":"0.34","week_end":"2023-10-28"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.3","percent_visits_covid":"1.1","percent_visits_influenza":"2.2","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.1","percent_visits_covid":"0.37","percent_visits_influenza":"0.74","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.9","percent_visits_covid":"0.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.65","week_end":"2023-11-18"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.57","percent_visits_covid":"0.39","percent_visits_influenza":"0.79","percent_visits_rsv":"0.39","week_end":"2023-11-25"}
-,{"county":"Skagway-Hoonah-Angoon Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.87","percent_visits_covid":"0.37","percent_visits_influenza":"1.12","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.34","percent_visits_covid":"2.19","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.75","percent_visits_covid":"2.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.29","week_end":"2022-10-08"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.24","percent_visits_covid":"1.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.55","week_end":"2022-10-22"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.5","percent_visits_covid":"1.77","percent_visits_influenza":"0.0","percent_visits_rsv":"0.74","week_end":"2022-10-29"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.91","percent_visits_covid":"3.64","percent_visits_influenza":"0.15","percent_visits_rsv":"2.27","week_end":"2022-11-05"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.98","percent_visits_covid":"2.13","percent_visits_influenza":"0.57","percent_visits_rsv":"2.56","week_end":"2022-11-12"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.7","percent_visits_covid":"1.52","percent_visits_influenza":"0.91","percent_visits_rsv":"2.43","week_end":"2022-11-19"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"8.61","percent_visits_covid":"1.75","percent_visits_influenza":"3.62","percent_visits_rsv":"3.25","week_end":"2022-11-26"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.56","percent_visits_covid":"0.39","percent_visits_influenza":"4.17","percent_visits_rsv":"3.13","week_end":"2022-12-03"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"12.47","percent_visits_covid":"0.4","percent_visits_influenza":"8.36","percent_visits_rsv":"3.85","week_end":"2022-12-10"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"13.75","percent_visits_covid":"1.75","percent_visits_influenza":"9.84","percent_visits_rsv":"2.43","week_end":"2022-12-17"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"9.62","percent_visits_covid":"1.49","percent_visits_influenza":"7.13","percent_visits_rsv":"1.33","week_end":"2022-12-24"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.38","percent_visits_covid":"1.49","percent_visits_influenza":"2.69","percent_visits_rsv":"1.2","week_end":"2022-12-31"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.37","percent_visits_covid":"3.46","percent_visits_influenza":"3.31","percent_visits_rsv":"0.6","week_end":"2023-01-07"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.72","percent_visits_covid":"2.68","percent_visits_influenza":"1.89","percent_visits_rsv":"0.31","week_end":"2023-01-14"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.56","percent_visits_covid":"3.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.44","week_end":"2023-01-21"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.97","percent_visits_covid":"3.65","percent_visits_influenza":"2.69","percent_visits_rsv":"0.95","week_end":"2023-01-28"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.38","percent_visits_covid":"5.34","percent_visits_influenza":"1.73","percent_visits_rsv":"0.78","week_end":"2023-02-04"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.42","percent_visits_covid":"4.03","percent_visits_influenza":"2.09","percent_visits_rsv":"0.3","week_end":"2023-02-11"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.63","percent_visits_covid":"3.9","percent_visits_influenza":"1.73","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.19","percent_visits_covid":"4.57","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.35","percent_visits_covid":"4.16","percent_visits_influenza":"1.19","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.49","percent_visits_covid":"2.81","percent_visits_influenza":"1.4","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.59","percent_visits_covid":"1.52","percent_visits_influenza":"1.07","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.33","percent_visits_covid":"2.22","percent_visits_influenza":"0.83","percent_visits_rsv":"0.28","week_end":"2023-03-25"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.14","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.77","percent_visits_covid":"0.31","percent_visits_influenza":"0.46","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.96","percent_visits_covid":"0.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.97","percent_visits_covid":"1.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.77","percent_visits_covid":"0.61","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.45","percent_visits_covid":"0.3","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.82","percent_visits_covid":"2.42","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.44","percent_visits_covid":"1.83","percent_visits_influenza":"0.61","percent_visits_rsv":"0.15","week_end":"2023-06-03"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.01","percent_visits_covid":"1.78","percent_visits_influenza":"1.37","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.87","percent_visits_covid":"2.44","percent_visits_influenza":"0.86","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.54","percent_visits_covid":"2.97","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.3","percent_visits_covid":"1.79","percent_visits_influenza":"0.38","percent_visits_rsv":"0.13","week_end":"2023-07-01"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.1","percent_visits_covid":"2.97","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.0","percent_visits_covid":"1.86","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.75","percent_visits_covid":"2.61","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.11","percent_visits_covid":"2.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.38","percent_visits_covid":"1.24","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.85","percent_visits_covid":"3.56","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.0","percent_visits_covid":"1.85","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.01","percent_visits_covid":"2.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-08-26"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.73","percent_visits_covid":"4.45","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.79","percent_visits_covid":"3.67","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.94","percent_visits_covid":"5.17","percent_visits_influenza":"0.78","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.16","percent_visits_covid":"3.88","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.06","percent_visits_covid":"3.01","percent_visits_influenza":"0.9","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.06","percent_visits_influenza":"0.63","percent_visits_rsv":"0.16","week_end":"2023-10-07"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.98","percent_visits_covid":"2.04","percent_visits_influenza":"0.94","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.67","percent_visits_covid":"1.3","percent_visits_influenza":"4.38","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.44","percent_visits_covid":"1.56","percent_visits_influenza":"3.73","percent_visits_rsv":"0.16","week_end":"2023-10-28"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.06","percent_visits_covid":"2.23","percent_visits_influenza":"2.83","percent_visits_rsv":"0.45","week_end":"2023-11-04"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.55","percent_visits_covid":"1.41","percent_visits_influenza":"2.51","percent_visits_rsv":"0.78","week_end":"2023-11-11"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.64","percent_visits_covid":"2.25","percent_visits_influenza":"2.42","percent_visits_rsv":"1.29","week_end":"2023-11-18"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.63","percent_visits_covid":"1.77","percent_visits_influenza":"3.05","percent_visits_rsv":"0.8","week_end":"2023-11-25"}
-,{"county":"Southeast Fairbanks Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.87","percent_visits_covid":"0.78","percent_visits_influenza":"0.78","percent_visits_rsv":"0.31","week_end":"2023-12-02"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.5","percent_visits_covid":"1.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Valdez-Cordova Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.72","percent_visits_covid":"1.49","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2022-10-01"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.67","percent_visits_covid":"1.19","percent_visits_influenza":"0.27","percent_visits_rsv":"0.23","week_end":"2022-10-08"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.56","percent_visits_influenza":"0.37","percent_visits_rsv":"0.29","week_end":"2022-10-15"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.31","percent_visits_covid":"1.08","percent_visits_influenza":"0.87","percent_visits_rsv":"0.36","week_end":"2022-10-22"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.59","percent_visits_covid":"1.11","percent_visits_influenza":"1.32","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.96","percent_visits_covid":"1.47","percent_visits_influenza":"2.01","percent_visits_rsv":"1.51","week_end":"2022-11-05"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.2","percent_visits_covid":"1.56","percent_visits_influenza":"3.7","percent_visits_rsv":"2.07","week_end":"2022-11-12"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"10.64","percent_visits_covid":"1.63","percent_visits_influenza":"6.62","percent_visits_rsv":"2.53","week_end":"2022-11-19"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.34","percent_visits_covid":"1.85","percent_visits_influenza":"8.94","percent_visits_rsv":"2.78","week_end":"2022-11-26"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.99","percent_visits_covid":"1.58","percent_visits_influenza":"10.55","percent_visits_rsv":"2.29","week_end":"2022-12-03"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"13.49","percent_visits_covid":"1.93","percent_visits_influenza":"10.17","percent_visits_rsv":"1.73","week_end":"2022-12-10"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"11.26","percent_visits_covid":"2.46","percent_visits_influenza":"7.2","percent_visits_rsv":"1.89","week_end":"2022-12-17"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.63","percent_visits_covid":"1.85","percent_visits_influenza":"5.31","percent_visits_rsv":"1.63","week_end":"2022-12-24"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.56","percent_visits_covid":"2.37","percent_visits_influenza":"4.88","percent_visits_rsv":"1.42","week_end":"2022-12-31"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.21","percent_visits_covid":"2.05","percent_visits_influenza":"2.65","percent_visits_rsv":"1.57","week_end":"2023-01-07"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.68","percent_visits_covid":"2.12","percent_visits_influenza":"1.59","percent_visits_rsv":"1.04","week_end":"2023-01-14"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.27","percent_visits_covid":"2.3","percent_visits_influenza":"0.81","percent_visits_rsv":"1.25","week_end":"2023-01-21"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.55","percent_visits_covid":"2.23","percent_visits_influenza":"0.43","percent_visits_rsv":"0.92","week_end":"2023-01-28"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.66","percent_visits_covid":"2.53","percent_visits_influenza":"0.43","percent_visits_rsv":"0.74","week_end":"2023-02-04"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.63","percent_visits_covid":"2.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.82","week_end":"2023-02-11"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.37","percent_visits_covid":"2.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.4","week_end":"2023-02-18"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.32","percent_visits_covid":"2.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.51","week_end":"2023-02-25"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.19","percent_visits_covid":"2.51","percent_visits_influenza":"0.37","percent_visits_rsv":"0.35","week_end":"2023-03-04"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.22","percent_visits_covid":"2.39","percent_visits_influenza":"0.32","percent_visits_rsv":"0.51","week_end":"2023-03-11"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.37","percent_visits_covid":"1.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.3","week_end":"2023-03-18"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.57","percent_visits_covid":"2.07","percent_visits_influenza":"0.21","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.55","percent_visits_influenza":"0.14","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.88","percent_visits_covid":"1.49","percent_visits_influenza":"0.19","percent_visits_rsv":"0.23","week_end":"2023-04-08"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.9","percent_visits_covid":"1.44","percent_visits_influenza":"0.16","percent_visits_rsv":"0.3","week_end":"2023-04-15"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.78","percent_visits_covid":"1.11","percent_visits_influenza":"0.36","percent_visits_rsv":"0.34","week_end":"2023-04-22"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.18","percent_visits_covid":"0.81","percent_visits_influenza":"0.22","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.7","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.26","week_end":"2023-05-06"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.19","percent_visits_covid":"0.92","percent_visits_influenza":"0.21","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.85","percent_visits_covid":"0.76","percent_visits_influenza":"0.04","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"0.86","percent_visits_covid":"0.54","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-05-27"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.65","percent_visits_covid":"0.99","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.55","percent_visits_covid":"0.95","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.08","percent_visits_covid":"1.47","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.93","percent_visits_covid":"1.44","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.66","percent_visits_covid":"1.36","percent_visits_influenza":"0.28","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.7","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.75","percent_visits_covid":"1.55","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.11","percent_visits_covid":"1.75","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.05","percent_visits_covid":"1.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.75","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.77","percent_visits_covid":"1.52","percent_visits_influenza":"0.2","percent_visits_rsv":"0.09","week_end":"2023-08-12"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.74","percent_visits_covid":"1.45","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.58","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.82","percent_visits_influenza":"0.4","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.79","percent_visits_covid":"2.22","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.15","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-09-16"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.43","percent_visits_covid":"1.62","percent_visits_influenza":"1.77","percent_visits_rsv":"0.09","week_end":"2023-09-23"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.13","percent_visits_covid":"1.57","percent_visits_influenza":"2.6","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"4.16","percent_visits_covid":"1.23","percent_visits_influenza":"2.87","percent_visits_rsv":"0.08","week_end":"2023-10-07"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.48","percent_visits_covid":"1.08","percent_visits_influenza":"5.27","percent_visits_rsv":"0.18","week_end":"2023-10-14"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"6.12","percent_visits_covid":"1.25","percent_visits_influenza":"4.69","percent_visits_rsv":"0.22","week_end":"2023-10-21"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"7.54","percent_visits_covid":"1.3","percent_visits_influenza":"5.94","percent_visits_rsv":"0.41","week_end":"2023-10-28"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"9.77","percent_visits_covid":"1.32","percent_visits_influenza":"7.84","percent_visits_rsv":"0.65","week_end":"2023-11-04"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"8.48","percent_visits_covid":"1.01","percent_visits_influenza":"6.62","percent_visits_rsv":"0.91","week_end":"2023-11-11"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"0.78","percent_visits_influenza":"3.68","percent_visits_rsv":"1.08","week_end":"2023-11-18"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"5.46","percent_visits_covid":"1.09","percent_visits_influenza":"3.31","percent_visits_rsv":"1.07","week_end":"2023-11-25"}
-,{"county":"Wade Hampton Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Anchorage (Anchorage), AK - Matanuska-Susitna Borough, AK","hsa_counties":"Aleutians East Borough, Aleutians West Census Area, Anchorage Municipality, Bethel Census Area, Bristol Bay Borough, Dillingham Census Area, Kenai Peninsula Borough, Kodiak Island Borough, Lake and Peninsula Borough, Matanuska-Susitna Borough, Nome Census Area, North Slope Borough, Northwest Arctic Borough, Valdez-Cordova Census Area, Wade Hampton Census Area","percent_visits_combined":"3.8","percent_visits_covid":"1.13","percent_visits_influenza":"1.7","percent_visits_rsv":"1.09","week_end":"2023-12-02"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.89","percent_visits_covid":"1.73","percent_visits_influenza":"0.0","percent_visits_rsv":"1.16","week_end":"2022-10-01"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.28","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.28","week_end":"2022-10-08"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"7.36","percent_visits_covid":"1.84","percent_visits_influenza":"0.0","percent_visits_rsv":"5.52","week_end":"2022-10-15"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.25","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.25","week_end":"2022-10-22"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.37","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.37","week_end":"2022-10-29"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.98","percent_visits_covid":"1.74","percent_visits_influenza":"5.23","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"18.18","percent_visits_covid":"2.02","percent_visits_influenza":"16.67","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"29.33","percent_visits_covid":"0.48","percent_visits_influenza":"28.37","percent_visits_rsv":"0.48","week_end":"2022-11-19"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"17.82","percent_visits_covid":"1.49","percent_visits_influenza":"16.83","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"11.18","percent_visits_covid":"1.32","percent_visits_influenza":"9.87","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.96","percent_visits_covid":"0.63","percent_visits_influenza":"5.7","percent_visits_rsv":"0.63","week_end":"2022-12-10"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.73","percent_visits_covid":"3.18","percent_visits_influenza":"3.82","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.92","percent_visits_covid":"1.46","percent_visits_influenza":"0.73","percent_visits_rsv":"0.73","week_end":"2022-12-24"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.59","percent_visits_covid":"4.19","percent_visits_influenza":"1.8","percent_visits_rsv":"0.6","week_end":"2022-12-31"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.54","percent_visits_covid":"0.77","percent_visits_influenza":"0.77","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.6","percent_visits_covid":"0.65","percent_visits_influenza":"0.65","percent_visits_rsv":"1.3","week_end":"2023-01-14"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.85","percent_visits_covid":"1.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.7","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.78","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.78","week_end":"2023-02-25"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.79","percent_visits_covid":"0.79","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.05","percent_visits_covid":"2.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.46","percent_visits_covid":"1.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.35","percent_visits_covid":"1.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.23","percent_visits_covid":"1.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.15","percent_visits_covid":"3.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.92","percent_visits_covid":"2.92","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.03","percent_visits_covid":"3.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.4","percent_visits_covid":"2.4","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.94","percent_visits_covid":"2.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.91","percent_visits_covid":"1.91","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.76","percent_visits_covid":"4.29","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.68","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.79","percent_visits_covid":"5.02","percent_visits_influenza":"3.77","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.99","percent_visits_covid":"6.88","percent_visits_influenza":"2.12","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.35","percent_visits_covid":"3.26","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.0","percent_visits_covid":"2.86","percent_visits_influenza":"0.57","percent_visits_rsv":"0.57","week_end":"2023-06-24"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.72","percent_visits_covid":"1.63","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.5","percent_visits_covid":"2.5","percent_visits_influenza":"2.5","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.09","percent_visits_covid":"3.09","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.95","percent_visits_covid":"3.85","percent_visits_influenza":"1.1","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.89","percent_visits_covid":"4.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.22","percent_visits_covid":"1.11","percent_visits_influenza":"1.11","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.34","percent_visits_covid":"1.94","percent_visits_influenza":"3.4","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"6.25","percent_visits_covid":"5.29","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.97","percent_visits_covid":"5.47","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"7.98","percent_visits_covid":"7.45","percent_visits_influenza":"1.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"5.03","percent_visits_covid":"3.35","percent_visits_influenza":"1.68","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"8.09","percent_visits_covid":"5.2","percent_visits_influenza":"2.89","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.0","percent_visits_covid":"2.0","percent_visits_influenza":"2.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"4.67","percent_visits_covid":"4.0","percent_visits_influenza":"0.67","percent_visits_rsv":"0.67","week_end":"2023-10-07"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.81","percent_visits_covid":"1.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.85","percent_visits_covid":"1.92","percent_visits_influenza":"1.92","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.85","percent_visits_covid":"0.93","percent_visits_influenza":"0.93","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.71","percent_visits_covid":"0.71","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"3.57","percent_visits_covid":"0.71","percent_visits_influenza":"2.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"1.53","percent_visits_covid":"0.76","percent_visits_influenza":"0.76","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-25"}
-,{"county":"Wrangell-Petersburg Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Ketchikan Gateway Borough, AK - Wrangell-Petersburg Cen, AK","hsa_counties":"Ketchikan Gateway Borough, Prince of Wales-Outer Ketchikan Census Area, Wrangell-Petersburg Census Area","percent_visits_combined":"0.74","percent_visits_covid":"0.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.1","percent_visits_covid":"2.1","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.77","percent_visits_covid":"1.42","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.94","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.92","percent_visits_covid":"0.65","percent_visits_influenza":"0.97","percent_visits_rsv":"1.3","week_end":"2022-10-22"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"0.32","percent_visits_influenza":"1.58","percent_visits_rsv":"1.27","week_end":"2022-10-29"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.6","percent_visits_covid":"1.27","percent_visits_influenza":"2.87","percent_visits_rsv":"4.78","week_end":"2022-11-05"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"8.02","percent_visits_covid":"1.43","percent_visits_influenza":"3.44","percent_visits_rsv":"3.44","week_end":"2022-11-12"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"12.42","percent_visits_covid":"1.21","percent_visits_influenza":"8.48","percent_visits_rsv":"2.73","week_end":"2022-11-19"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.56","percent_visits_covid":"0.83","percent_visits_influenza":"11.11","percent_visits_rsv":"3.61","week_end":"2022-11-26"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"15.08","percent_visits_covid":"1.23","percent_visits_influenza":"11.08","percent_visits_rsv":"3.08","week_end":"2022-12-03"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.86","percent_visits_covid":"0.86","percent_visits_influenza":"16.0","percent_visits_rsv":"2.57","week_end":"2022-12-10"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"18.85","percent_visits_covid":"1.6","percent_visits_influenza":"16.61","percent_visits_rsv":"1.92","week_end":"2022-12-17"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"11.04","percent_visits_covid":"0.97","percent_visits_influenza":"9.42","percent_visits_rsv":"0.65","week_end":"2022-12-24"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"10.85","percent_visits_covid":"4.07","percent_visits_influenza":"5.08","percent_visits_rsv":"2.03","week_end":"2022-12-31"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.19","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"1.73","week_end":"2023-01-07"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.64","percent_visits_covid":"1.09","percent_visits_influenza":"0.36","percent_visits_rsv":"2.18","week_end":"2023-01-14"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.99","percent_visits_covid":"1.8","percent_visits_influenza":"0.3","percent_visits_rsv":"0.9","week_end":"2023-01-21"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.05","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.41","week_end":"2023-01-28"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.96","percent_visits_covid":"0.64","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"2.18","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.7","percent_visits_covid":"2.22","percent_visits_influenza":"0.37","percent_visits_rsv":"1.11","week_end":"2023-02-18"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.69","percent_visits_covid":"2.58","percent_visits_influenza":"0.37","percent_visits_rsv":"0.74","week_end":"2023-02-25"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-04"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.6","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.32","week_end":"2023-03-11"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.84","percent_visits_covid":"3.87","percent_visits_influenza":"0.0","percent_visits_rsv":"1.29","week_end":"2023-03-18"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.16","percent_visits_covid":"2.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.35","week_end":"2023-03-25"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.19","percent_visits_covid":"4.19","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.74","percent_visits_covid":"3.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.08","percent_visits_covid":"3.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.54","percent_visits_covid":"2.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.08","percent_visits_covid":"2.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"0.89","percent_visits_covid":"0.59","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.88","percent_visits_covid":"1.34","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.47","percent_visits_covid":"1.64","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.07","percent_visits_covid":"1.02","percent_visits_influenza":"2.05","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"5.03","percent_visits_covid":"3.07","percent_visits_influenza":"2.23","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.29","percent_visits_covid":"2.28","percent_visits_influenza":"1.52","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.8","percent_visits_covid":"1.96","percent_visits_influenza":"0.84","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.81","percent_visits_covid":"3.54","percent_visits_influenza":"1.27","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.14","percent_visits_covid":"2.36","percent_visits_influenza":"0.79","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.0","percent_visits_covid":"2.25","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.51","percent_visits_covid":"2.26","percent_visits_influenza":"0.5","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.82","percent_visits_covid":"1.98","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.46","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.46","percent_visits_covid":"3.17","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.52","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"4.2","percent_visits_covid":"4.2","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.11","percent_visits_covid":"2.85","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.93","percent_visits_covid":"1.29","percent_visits_influenza":"0.32","percent_visits_rsv":"0.32","week_end":"2023-09-16"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.13","percent_visits_covid":"1.99","percent_visits_influenza":"1.14","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"6.48","percent_visits_covid":"3.7","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.48","percent_visits_covid":"3.14","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.15","percent_visits_covid":"1.23","percent_visits_influenza":"0.92","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.2","percent_visits_covid":"0.63","percent_visits_influenza":"1.57","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.06","percent_visits_covid":"0.69","percent_visits_influenza":"1.03","percent_visits_rsv":"0.34","week_end":"2023-10-28"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"3.3","percent_visits_covid":"1.1","percent_visits_influenza":"2.2","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.1","percent_visits_covid":"0.37","percent_visits_influenza":"0.74","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"2.9","percent_visits_covid":"0.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.65","week_end":"2023-11-18"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.57","percent_visits_covid":"0.39","percent_visits_influenza":"0.79","percent_visits_rsv":"0.39","week_end":"2023-11-25"}
-,{"county":"Yakutat City and Borough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Juneau City and Borough, AK - Sitka City and Borough, AK","hsa_counties":"Haines Borough, Juneau City and Borough, Sitka City and Borough, Skagway-Hoonah-Angoon Census Area, Yakutat City and Borough","percent_visits_combined":"1.87","percent_visits_covid":"0.37","percent_visits_influenza":"1.12","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.34","percent_visits_covid":"2.19","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.75","percent_visits_covid":"2.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.29","week_end":"2022-10-08"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.24","percent_visits_covid":"1.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.19","percent_visits_covid":"1.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.55","week_end":"2022-10-22"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.5","percent_visits_covid":"1.77","percent_visits_influenza":"0.0","percent_visits_rsv":"0.74","week_end":"2022-10-29"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.91","percent_visits_covid":"3.64","percent_visits_influenza":"0.15","percent_visits_rsv":"2.27","week_end":"2022-11-05"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.98","percent_visits_covid":"2.13","percent_visits_influenza":"0.57","percent_visits_rsv":"2.56","week_end":"2022-11-12"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.7","percent_visits_covid":"1.52","percent_visits_influenza":"0.91","percent_visits_rsv":"2.43","week_end":"2022-11-19"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"8.61","percent_visits_covid":"1.75","percent_visits_influenza":"3.62","percent_visits_rsv":"3.25","week_end":"2022-11-26"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.56","percent_visits_covid":"0.39","percent_visits_influenza":"4.17","percent_visits_rsv":"3.13","week_end":"2022-12-03"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"12.47","percent_visits_covid":"0.4","percent_visits_influenza":"8.36","percent_visits_rsv":"3.85","week_end":"2022-12-10"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"13.75","percent_visits_covid":"1.75","percent_visits_influenza":"9.84","percent_visits_rsv":"2.43","week_end":"2022-12-17"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"9.62","percent_visits_covid":"1.49","percent_visits_influenza":"7.13","percent_visits_rsv":"1.33","week_end":"2022-12-24"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.38","percent_visits_covid":"1.49","percent_visits_influenza":"2.69","percent_visits_rsv":"1.2","week_end":"2022-12-31"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.37","percent_visits_covid":"3.46","percent_visits_influenza":"3.31","percent_visits_rsv":"0.6","week_end":"2023-01-07"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.72","percent_visits_covid":"2.68","percent_visits_influenza":"1.89","percent_visits_rsv":"0.31","week_end":"2023-01-14"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.56","percent_visits_covid":"3.65","percent_visits_influenza":"1.61","percent_visits_rsv":"0.44","week_end":"2023-01-21"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.97","percent_visits_covid":"3.65","percent_visits_influenza":"2.69","percent_visits_rsv":"0.95","week_end":"2023-01-28"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"7.38","percent_visits_covid":"5.34","percent_visits_influenza":"1.73","percent_visits_rsv":"0.78","week_end":"2023-02-04"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.42","percent_visits_covid":"4.03","percent_visits_influenza":"2.09","percent_visits_rsv":"0.3","week_end":"2023-02-11"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.63","percent_visits_covid":"3.9","percent_visits_influenza":"1.73","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"6.19","percent_visits_covid":"4.57","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.35","percent_visits_covid":"4.16","percent_visits_influenza":"1.19","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.49","percent_visits_covid":"2.81","percent_visits_influenza":"1.4","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.59","percent_visits_covid":"1.52","percent_visits_influenza":"1.07","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.33","percent_visits_covid":"2.22","percent_visits_influenza":"0.83","percent_visits_rsv":"0.28","week_end":"2023-03-25"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.14","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.77","percent_visits_covid":"0.31","percent_visits_influenza":"0.46","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.96","percent_visits_covid":"0.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.97","percent_visits_covid":"1.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.77","percent_visits_covid":"0.61","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"0.45","percent_visits_covid":"0.3","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.82","percent_visits_covid":"2.42","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.44","percent_visits_covid":"1.83","percent_visits_influenza":"0.61","percent_visits_rsv":"0.15","week_end":"2023-06-03"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.01","percent_visits_covid":"1.78","percent_visits_influenza":"1.37","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.87","percent_visits_covid":"2.44","percent_visits_influenza":"0.86","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.54","percent_visits_covid":"2.97","percent_visits_influenza":"0.85","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.3","percent_visits_covid":"1.79","percent_visits_influenza":"0.38","percent_visits_rsv":"0.13","week_end":"2023-07-01"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.1","percent_visits_covid":"2.97","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.0","percent_visits_covid":"1.86","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.75","percent_visits_covid":"2.61","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.11","percent_visits_covid":"2.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.38","percent_visits_covid":"1.24","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.85","percent_visits_covid":"3.56","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.0","percent_visits_covid":"1.85","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.01","percent_visits_covid":"2.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-08-26"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.73","percent_visits_covid":"4.45","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"3.79","percent_visits_covid":"3.67","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.94","percent_visits_covid":"5.17","percent_visits_influenza":"0.78","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.16","percent_visits_covid":"3.88","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.06","percent_visits_covid":"3.01","percent_visits_influenza":"0.9","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.86","percent_visits_covid":"2.06","percent_visits_influenza":"0.63","percent_visits_rsv":"0.16","week_end":"2023-10-07"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"2.98","percent_visits_covid":"2.04","percent_visits_influenza":"0.94","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.67","percent_visits_covid":"1.3","percent_visits_influenza":"4.38","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.44","percent_visits_covid":"1.56","percent_visits_influenza":"3.73","percent_visits_rsv":"0.16","week_end":"2023-10-28"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.06","percent_visits_covid":"2.23","percent_visits_influenza":"2.83","percent_visits_rsv":"0.45","week_end":"2023-11-04"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"4.55","percent_visits_covid":"1.41","percent_visits_influenza":"2.51","percent_visits_rsv":"0.78","week_end":"2023-11-11"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.64","percent_visits_covid":"2.25","percent_visits_influenza":"2.42","percent_visits_rsv":"1.29","week_end":"2023-11-18"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"5.63","percent_visits_covid":"1.77","percent_visits_influenza":"3.05","percent_visits_rsv":"0.8","week_end":"2023-11-25"}
-,{"county":"Yukon-Koyukuk Census Area","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Alaska","hsa":"Fairbanks North Star Borough, AK - Denali/Yukon-Koyukuk, AK","hsa_counties":"Denali Borough, Fairbanks North Star Borough, Southeast Fairbanks Census Area, Yukon-Koyukuk Census Area","percent_visits_combined":"1.87","percent_visits_covid":"0.78","percent_visits_influenza":"0.78","percent_visits_rsv":"0.31","week_end":"2023-12-02"}
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/filters/Arkansas.json b/packages/dashboard/examples/filters/Arkansas.json
deleted file mode 100644
index 6b289a2743..0000000000
--- a/packages/dashboard/examples/filters/Arkansas.json
+++ /dev/null
@@ -1,4713 +0,0 @@
-[{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.37","percent_visits_covid":"0.98","percent_visits_influenza":"0.3","percent_visits_rsv":"1.12","week_end":"2022-10-01"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.72","percent_visits_covid":"0.94","percent_visits_influenza":"0.69","percent_visits_rsv":"1.12","week_end":"2022-10-08"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.24","percent_visits_covid":"1.03","percent_visits_influenza":"1.08","percent_visits_rsv":"1.18","week_end":"2022-10-15"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.66","percent_visits_covid":"1.01","percent_visits_influenza":"1.73","percent_visits_rsv":"0.96","week_end":"2022-10-22"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.34","percent_visits_covid":"0.8","percent_visits_influenza":"3.38","percent_visits_rsv":"1.24","week_end":"2022-10-29"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.38","percent_visits_covid":"0.97","percent_visits_influenza":"4.57","percent_visits_rsv":"0.92","week_end":"2022-11-05"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.1","percent_visits_covid":"0.95","percent_visits_influenza":"5.44","percent_visits_rsv":"0.82","week_end":"2022-11-12"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.52","percent_visits_covid":"0.79","percent_visits_influenza":"6.24","percent_visits_rsv":"0.58","week_end":"2022-11-19"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"11.07","percent_visits_covid":"1.42","percent_visits_influenza":"9.22","percent_visits_rsv":"0.58","week_end":"2022-11-26"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.82","percent_visits_covid":"1.76","percent_visits_influenza":"6.8","percent_visits_rsv":"0.47","week_end":"2022-12-03"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.22","percent_visits_covid":"1.91","percent_visits_influenza":"5.14","percent_visits_rsv":"0.32","week_end":"2022-12-10"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.98","percent_visits_covid":"2.19","percent_visits_influenza":"3.56","percent_visits_rsv":"0.3","week_end":"2022-12-17"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.58","percent_visits_covid":"2.65","percent_visits_influenza":"2.78","percent_visits_rsv":"0.25","week_end":"2022-12-24"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.04","percent_visits_covid":"3.34","percent_visits_influenza":"2.63","percent_visits_rsv":"0.24","week_end":"2022-12-31"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.38","percent_visits_covid":"2.81","percent_visits_influenza":"1.45","percent_visits_rsv":"0.24","week_end":"2023-01-07"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.0","percent_visits_covid":"2.12","percent_visits_influenza":"0.81","percent_visits_rsv":"0.15","week_end":"2023-01-14"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.23","percent_visits_covid":"1.45","percent_visits_influenza":"0.69","percent_visits_rsv":"0.16","week_end":"2023-01-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.33","percent_visits_covid":"1.53","percent_visits_influenza":"0.7","percent_visits_rsv":"0.14","week_end":"2023-01-28"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.08","percent_visits_covid":"1.35","percent_visits_influenza":"0.65","percent_visits_rsv":"0.12","week_end":"2023-02-04"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.63","percent_visits_covid":"1.09","percent_visits_influenza":"0.5","percent_visits_rsv":"0.07","week_end":"2023-02-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.62","percent_visits_covid":"1.1","percent_visits_influenza":"0.46","percent_visits_rsv":"0.1","week_end":"2023-02-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.72","percent_visits_covid":"1.16","percent_visits_influenza":"0.52","percent_visits_rsv":"0.09","week_end":"2023-02-25"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.47","percent_visits_covid":"1.07","percent_visits_influenza":"0.38","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.22","percent_visits_covid":"0.8","percent_visits_influenza":"0.37","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.11","percent_visits_covid":"0.68","percent_visits_influenza":"0.39","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.3","percent_visits_covid":"0.83","percent_visits_influenza":"0.41","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.15","percent_visits_covid":"0.8","percent_visits_influenza":"0.33","percent_visits_rsv":"0.05","week_end":"2023-04-01"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.07","percent_visits_covid":"0.78","percent_visits_influenza":"0.24","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.09","percent_visits_covid":"0.77","percent_visits_influenza":"0.28","percent_visits_rsv":"0.05","week_end":"2023-04-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.69","percent_visits_covid":"0.5","percent_visits_influenza":"0.17","percent_visits_rsv":"0.03","week_end":"2023-04-22"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.98","percent_visits_covid":"0.8","percent_visits_influenza":"0.17","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.87","percent_visits_covid":"0.7","percent_visits_influenza":"0.15","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.71","percent_visits_covid":"0.45","percent_visits_influenza":"0.24","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.88","percent_visits_covid":"0.59","percent_visits_influenza":"0.27","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.57","percent_visits_covid":"0.4","percent_visits_influenza":"0.16","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.6","percent_visits_covid":"0.43","percent_visits_influenza":"0.14","percent_visits_rsv":"0.03","week_end":"2023-06-03"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.49","percent_visits_covid":"0.33","percent_visits_influenza":"0.13","percent_visits_rsv":"0.05","week_end":"2023-06-10"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.38","percent_visits_covid":"0.24","percent_visits_influenza":"0.12","percent_visits_rsv":"0.03","week_end":"2023-06-17"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.45","percent_visits_covid":"0.3","percent_visits_influenza":"0.14","percent_visits_rsv":"0.01","week_end":"2023-06-24"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.44","percent_visits_covid":"0.29","percent_visits_influenza":"0.13","percent_visits_rsv":"0.02","week_end":"2023-07-01"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.46","percent_visits_covid":"0.28","percent_visits_influenza":"0.16","percent_visits_rsv":"0.02","week_end":"2023-07-08"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.54","percent_visits_covid":"0.39","percent_visits_influenza":"0.12","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.65","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.67","percent_visits_covid":"0.57","percent_visits_influenza":"0.09","percent_visits_rsv":"0.03","week_end":"2023-07-29"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.17","percent_visits_covid":"0.99","percent_visits_influenza":"0.17","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.41","percent_visits_covid":"1.28","percent_visits_influenza":"0.12","percent_visits_rsv":"0.02","week_end":"2023-08-12"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.99","percent_visits_covid":"1.84","percent_visits_influenza":"0.12","percent_visits_rsv":"0.02","week_end":"2023-08-19"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.87","percent_visits_covid":"2.61","percent_visits_influenza":"0.25","percent_visits_rsv":"0.04","week_end":"2023-08-26"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.55","percent_visits_covid":"3.39","percent_visits_influenza":"0.15","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.72","percent_visits_covid":"3.49","percent_visits_influenza":"0.25","percent_visits_rsv":"0.03","week_end":"2023-09-09"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.55","percent_visits_covid":"2.35","percent_visits_influenza":"0.2","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.3","percent_visits_covid":"2.06","percent_visits_influenza":"0.18","percent_visits_rsv":"0.08","week_end":"2023-09-23"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.83","percent_visits_covid":"1.56","percent_visits_influenza":"0.18","percent_visits_rsv":"0.11","week_end":"2023-09-30"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.77","percent_visits_covid":"1.24","percent_visits_influenza":"0.37","percent_visits_rsv":"0.19","week_end":"2023-10-07"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.84","percent_visits_covid":"1.11","percent_visits_influenza":"0.57","percent_visits_rsv":"0.19","week_end":"2023-10-14"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.02","percent_visits_covid":"1.02","percent_visits_influenza":"0.71","percent_visits_rsv":"0.33","week_end":"2023-10-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.07","percent_visits_covid":"0.94","percent_visits_influenza":"0.62","percent_visits_rsv":"0.55","week_end":"2023-10-28"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.21","percent_visits_covid":"0.88","percent_visits_influenza":"0.69","percent_visits_rsv":"0.69","week_end":"2023-11-04"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.12","percent_visits_covid":"1.29","percent_visits_influenza":"0.93","percent_visits_rsv":"0.94","week_end":"2023-11-11"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.44","percent_visits_covid":"1.14","percent_visits_influenza":"0.85","percent_visits_rsv":"1.52","week_end":"2023-11-18"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.6","percent_visits_covid":"1.63","percent_visits_influenza":"1.12","percent_visits_rsv":"1.94","week_end":"2023-11-25"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.41","percent_visits_covid":"1.53","percent_visits_influenza":"0.9","percent_visits_rsv":"2.03","week_end":"2023-12-02"}
-,{"county":"Arkansas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Arkansas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.9","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"2.17","week_end":"2022-10-08"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.55","percent_visits_covid":"1.18","percent_visits_influenza":"0.59","percent_visits_rsv":"1.78","week_end":"2022-10-15"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.89","percent_visits_covid":"1.73","percent_visits_influenza":"0.0","percent_visits_rsv":"1.16","week_end":"2022-10-22"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"5.56","percent_visits_covid":"2.08","percent_visits_influenza":"1.39","percent_visits_rsv":"2.08","week_end":"2022-10-29"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.31","percent_visits_covid":"2.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.66","week_end":"2022-11-05"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"5.88","percent_visits_covid":"1.18","percent_visits_influenza":"4.12","percent_visits_rsv":"0.59","week_end":"2022-11-12"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"8.33","percent_visits_covid":"0.6","percent_visits_influenza":"6.55","percent_visits_rsv":"1.19","week_end":"2022-11-19"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"12.57","percent_visits_covid":"2.09","percent_visits_influenza":"9.95","percent_visits_rsv":"0.52","week_end":"2022-11-26"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"12.14","percent_visits_covid":"2.89","percent_visits_influenza":"9.25","percent_visits_rsv":"0.58","week_end":"2022-12-03"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"15.69","percent_visits_covid":"5.88","percent_visits_influenza":"9.8","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"8.82","percent_visits_covid":"1.18","percent_visits_influenza":"7.65","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"11.29","percent_visits_covid":"3.23","percent_visits_influenza":"7.26","percent_visits_rsv":"0.81","week_end":"2022-12-24"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"7.89","percent_visits_covid":"1.97","percent_visits_influenza":"6.58","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"9.79","percent_visits_covid":"4.2","percent_visits_influenza":"5.59","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.81","percent_visits_covid":"0.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.57","percent_visits_covid":"1.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.26","percent_visits_covid":"2.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.81","percent_visits_covid":"0.0","percent_visits_influenza":"0.81","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.75","percent_visits_covid":"0.75","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.21","percent_visits_covid":"2.21","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.7","percent_visits_covid":"2.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.32","percent_visits_covid":"1.32","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.42","percent_visits_covid":"1.61","percent_visits_influenza":"0.81","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.97","percent_visits_covid":"1.59","percent_visits_influenza":"2.38","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.43","percent_visits_covid":"1.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.68","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.44","percent_visits_covid":"1.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.68","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.67","percent_visits_covid":"1.67","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.96","percent_visits_covid":"0.0","percent_visits_influenza":"1.96","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Arkansas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Arkansas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Arkansas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Arkansas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.65","percent_visits_covid":"0.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Arkansas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.84","percent_visits_covid":"2.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.71","week_end":"2023-08-05"}
-,{"county":"Arkansas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.8","percent_visits_covid":"2.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Arkansas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.65","percent_visits_covid":"3.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.07","percent_visits_covid":"3.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"4.46","percent_visits_covid":"4.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.64","percent_visits_covid":"3.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.96","percent_visits_covid":"1.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.41","percent_visits_covid":"3.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.63","percent_visits_covid":"1.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.78","percent_visits_covid":"2.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.37","percent_visits_covid":"1.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.66","percent_visits_covid":"0.66","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.8","percent_visits_covid":"2.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.96","percent_visits_covid":"2.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.45","percent_visits_covid":"1.38","percent_visits_influenza":"1.38","percent_visits_rsv":"0.69","week_end":"2023-11-18"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.96","percent_visits_covid":"1.48","percent_visits_influenza":"0.0","percent_visits_rsv":"1.48","week_end":"2023-11-25"}
-,{"county":"Arkansas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.23","percent_visits_covid":"1.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.69","percent_visits_covid":"0.0","percent_visits_influenza":"1.54","percent_visits_rsv":"1.15","week_end":"2022-10-01"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.31","percent_visits_covid":"0.41","percent_visits_influenza":"1.24","percent_visits_rsv":"1.65","week_end":"2022-10-08"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"9.76","percent_visits_covid":"2.44","percent_visits_influenza":"5.28","percent_visits_rsv":"2.03","week_end":"2022-10-15"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"6.55","percent_visits_covid":"0.0","percent_visits_influenza":"5.68","percent_visits_rsv":"0.87","week_end":"2022-10-22"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"5.51","percent_visits_covid":"0.79","percent_visits_influenza":"4.33","percent_visits_rsv":"0.39","week_end":"2022-10-29"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"9.52","percent_visits_covid":"0.37","percent_visits_influenza":"9.52","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"8.81","percent_visits_covid":"1.15","percent_visits_influenza":"7.28","percent_visits_rsv":"0.38","week_end":"2022-11-12"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"4.66","percent_visits_covid":"0.42","percent_visits_influenza":"4.24","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"14.23","percent_visits_covid":"1.19","percent_visits_influenza":"13.04","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"9.09","percent_visits_covid":"1.52","percent_visits_influenza":"6.82","percent_visits_rsv":"0.76","week_end":"2022-12-03"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.82","percent_visits_covid":"0.36","percent_visits_influenza":"1.46","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"9.32","percent_visits_covid":"5.08","percent_visits_influenza":"3.81","percent_visits_rsv":"0.42","week_end":"2022-12-17"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"5.86","percent_visits_covid":"3.52","percent_visits_influenza":"2.73","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"7.04","percent_visits_covid":"5.56","percent_visits_influenza":"1.48","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"4.17","percent_visits_covid":"2.08","percent_visits_influenza":"2.08","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.2","percent_visits_covid":"1.32","percent_visits_influenza":"0.88","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.87","percent_visits_covid":"0.87","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.35","percent_visits_covid":"3.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.58","percent_visits_covid":"1.72","percent_visits_influenza":"0.86","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.26","percent_visits_covid":"2.33","percent_visits_influenza":"0.93","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"4.27","percent_visits_covid":"2.99","percent_visits_influenza":"1.71","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.1","percent_visits_covid":"1.33","percent_visits_influenza":"1.77","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.44","percent_visits_covid":"0.96","percent_visits_influenza":"0.48","percent_visits_rsv":"0.48","week_end":"2023-03-04"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.46","percent_visits_covid":"0.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.39","percent_visits_covid":"1.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.45","percent_visits_covid":"0.45","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.91","percent_visits_covid":"0.91","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.47","percent_visits_covid":"0.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.42","percent_visits_covid":"0.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.37","percent_visits_covid":"0.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.83","percent_visits_covid":"0.83","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.35","percent_visits_covid":"0.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.36","percent_visits_covid":"0.36","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.43","percent_visits_covid":"2.02","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.22","percent_visits_covid":"1.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.17","percent_visits_covid":"1.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.15","percent_visits_covid":"1.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.22","percent_visits_covid":"1.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Ashley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.36","percent_visits_covid":"2.99","percent_visits_influenza":"0.37","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"7.58","percent_visits_covid":"7.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.78","percent_visits_covid":"3.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.75","percent_visits_covid":"0.75","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.4","percent_visits_covid":"0.4","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Ashley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.82","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.41","week_end":"2023-09-30"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.9","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.9","week_end":"2023-10-07"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"4.72","percent_visits_covid":"3.3","percent_visits_influenza":"0.0","percent_visits_rsv":"1.42","week_end":"2023-10-14"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.97","percent_visits_covid":"0.79","percent_visits_influenza":"0.0","percent_visits_rsv":"1.18","week_end":"2023-10-21"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.62","percent_visits_covid":"0.0","percent_visits_influenza":"0.44","percent_visits_rsv":"2.18","week_end":"2023-10-28"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.41","percent_visits_covid":"0.4","percent_visits_influenza":"0.0","percent_visits_rsv":"2.01","week_end":"2023-11-04"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.57","percent_visits_covid":"0.0","percent_visits_influenza":"1.18","percent_visits_rsv":"0.39","week_end":"2023-11-11"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.08","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"2.69","week_end":"2023-11-18"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"5.98","percent_visits_covid":"1.71","percent_visits_influenza":"1.28","percent_visits_rsv":"2.99","week_end":"2023-11-25"}
-,{"county":"Ashley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.21","percent_visits_covid":"1.11","percent_visits_influenza":"0.74","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-22"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-29"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-25"}
-,{"county":"Baxter","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.61","percent_visits_covid":"0.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.25","week_end":"2022-10-08"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.21","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.65","week_end":"2022-10-15"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.64","percent_visits_covid":"0.6","percent_visits_influenza":"0.55","percent_visits_rsv":"0.5","week_end":"2022-10-22"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.69","percent_visits_covid":"0.56","percent_visits_influenza":"0.67","percent_visits_rsv":"0.51","week_end":"2022-10-29"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.46","percent_visits_covid":"0.8","percent_visits_influenza":"1.28","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.31","percent_visits_covid":"0.47","percent_visits_influenza":"2.55","percent_visits_rsv":"0.33","week_end":"2022-11-12"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"5.75","percent_visits_covid":"0.38","percent_visits_influenza":"5.04","percent_visits_rsv":"0.38","week_end":"2022-11-19"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"9.57","percent_visits_covid":"1.25","percent_visits_influenza":"8.06","percent_visits_rsv":"0.26","week_end":"2022-11-26"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"7.84","percent_visits_covid":"1.37","percent_visits_influenza":"6.19","percent_visits_rsv":"0.35","week_end":"2022-12-03"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"5.85","percent_visits_covid":"1.51","percent_visits_influenza":"4.3","percent_visits_rsv":"0.08","week_end":"2022-12-10"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.89","percent_visits_covid":"1.79","percent_visits_influenza":"2.88","percent_visits_rsv":"0.31","week_end":"2022-12-17"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.36","percent_visits_covid":"1.71","percent_visits_influenza":"2.51","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.48","percent_visits_covid":"2.07","percent_visits_influenza":"2.24","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.27","percent_visits_covid":"1.36","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.63","percent_visits_influenza":"0.43","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.19","percent_visits_covid":"1.02","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-01-21"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.92","percent_visits_covid":"1.1","percent_visits_influenza":"0.72","percent_visits_rsv":"0.1","week_end":"2023-01-28"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.37","percent_visits_covid":"1.0","percent_visits_influenza":"0.16","percent_visits_rsv":"0.21","week_end":"2023-02-04"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.68","percent_visits_covid":"0.5","percent_visits_influenza":"0.09","percent_visits_rsv":"0.14","week_end":"2023-02-11"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.63","percent_visits_covid":"0.49","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.25","percent_visits_covid":"0.95","percent_visits_influenza":"0.13","percent_visits_rsv":"0.22","week_end":"2023-02-25"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.05","percent_visits_covid":"1.01","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.62","percent_visits_covid":"0.57","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.31","percent_visits_covid":"0.18","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.9","percent_visits_covid":"0.63","percent_visits_influenza":"0.22","percent_visits_rsv":"0.04","week_end":"2023-03-25"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.61","percent_visits_covid":"0.48","percent_visits_influenza":"0.04","percent_visits_rsv":"0.09","week_end":"2023-04-01"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.63","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.44","percent_visits_influenza":"0.13","percent_visits_rsv":"0.09","week_end":"2023-04-15"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.33","percent_visits_covid":"0.29","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.45","percent_visits_covid":"0.32","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.47","percent_visits_influenza":"0.04","percent_visits_rsv":"0.13","week_end":"2023-05-06"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.38","percent_visits_covid":"0.21","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.44","percent_visits_covid":"0.31","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.43","percent_visits_covid":"0.26","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-05-27"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.37","percent_visits_covid":"0.17","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.56","percent_visits_covid":"0.38","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-06-10"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.44","percent_visits_covid":"0.31","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.21","percent_visits_covid":"0.13","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.3","percent_visits_covid":"0.09","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.49","percent_visits_covid":"0.29","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.43","percent_visits_covid":"0.3","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.38","percent_visits_covid":"0.33","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.57","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.32","percent_visits_covid":"1.15","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.17","percent_visits_covid":"1.08","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.83","percent_visits_covid":"2.59","percent_visits_influenza":"0.24","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.17","percent_visits_covid":"2.12","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.48","percent_visits_covid":"3.41","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.46","percent_visits_covid":"1.83","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.58","percent_visits_covid":"1.5","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Benton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.37","percent_visits_covid":"1.07","percent_visits_influenza":"0.15","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.82","percent_visits_covid":"1.09","percent_visits_influenza":"0.73","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.56","percent_visits_covid":"0.86","percent_visits_influenza":"0.55","percent_visits_rsv":"0.16","week_end":"2023-10-14"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.0","percent_visits_covid":"1.52","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.51","percent_visits_covid":"0.93","percent_visits_influenza":"0.43","percent_visits_rsv":"0.22","week_end":"2023-10-28"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.76","percent_visits_covid":"0.8","percent_visits_influenza":"0.32","percent_visits_rsv":"0.64","week_end":"2023-11-04"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.97","percent_visits_covid":"1.09","percent_visits_influenza":"0.58","percent_visits_rsv":"0.29","week_end":"2023-11-11"}
-,{"county":"Benton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.13","percent_visits_covid":"1.03","percent_visits_influenza":"0.37","percent_visits_rsv":"0.81","week_end":"2023-11-18"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.74","percent_visits_covid":"1.57","percent_visits_influenza":"0.39","percent_visits_rsv":"0.78","week_end":"2023-11-25"}
-,{"county":"Benton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.07","percent_visits_covid":"1.69","percent_visits_influenza":"0.38","percent_visits_rsv":"1.0","week_end":"2023-12-02"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2022-10-01"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.88","percent_visits_covid":"0.15","percent_visits_influenza":"0.15","percent_visits_rsv":"0.59","week_end":"2022-10-08"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.29","percent_visits_covid":"1.29","percent_visits_influenza":"0.29","percent_visits_rsv":"0.71","week_end":"2022-10-15"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.54","percent_visits_covid":"0.32","percent_visits_influenza":"1.9","percent_visits_rsv":"0.32","week_end":"2022-10-22"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.12","percent_visits_covid":"0.47","percent_visits_influenza":"2.19","percent_visits_rsv":"0.47","week_end":"2022-10-29"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.88","percent_visits_covid":"0.55","percent_visits_influenza":"2.2","percent_visits_rsv":"0.14","week_end":"2022-11-05"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.62","percent_visits_rsv":"0.27","week_end":"2022-11-12"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.99","percent_visits_covid":"0.28","percent_visits_influenza":"2.28","percent_visits_rsv":"0.43","week_end":"2022-11-19"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.5","percent_visits_covid":"0.4","percent_visits_influenza":"3.84","percent_visits_rsv":"0.26","week_end":"2022-11-26"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.43","percent_visits_covid":"1.07","percent_visits_influenza":"3.22","percent_visits_rsv":"0.13","week_end":"2022-12-03"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.18","percent_visits_covid":"1.5","percent_visits_influenza":"3.27","percent_visits_rsv":"0.41","week_end":"2022-12-10"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.94","percent_visits_covid":"0.56","percent_visits_influenza":"3.38","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.91","percent_visits_covid":"2.13","percent_visits_influenza":"2.13","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.21","percent_visits_covid":"1.31","percent_visits_influenza":"2.47","percent_visits_rsv":"0.44","week_end":"2022-12-31"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.8","percent_visits_covid":"0.78","percent_visits_influenza":"2.02","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.02","percent_visits_covid":"1.96","percent_visits_influenza":"1.06","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.49","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.86","percent_visits_covid":"0.45","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.84","percent_visits_covid":"0.5","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.56","percent_visits_covid":"0.31","percent_visits_influenza":"1.24","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.94","percent_visits_covid":"0.31","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.48","percent_visits_covid":"0.16","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.61","percent_visits_covid":"0.46","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.15","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-03-18"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.16","percent_visits_covid":"0.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.29","percent_visits_covid":"0.15","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.13","percent_visits_covid":"0.99","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.74","percent_visits_covid":"1.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.55","percent_visits_covid":"0.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.26","percent_visits_covid":"0.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.41","percent_visits_covid":"0.27","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.15","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.81","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.71","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-15"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.44","percent_visits_covid":"0.29","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-07-22"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.47","percent_visits_covid":"0.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.9","percent_visits_covid":"0.75","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-08-05"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.55","percent_visits_covid":"2.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.79","percent_visits_covid":"2.79","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.17","percent_visits_covid":"3.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.2","percent_visits_covid":"4.81","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.55","percent_visits_covid":"3.41","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.18","percent_visits_covid":"2.03","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Boone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.27","percent_visits_covid":"1.13","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.5","percent_visits_covid":"1.83","percent_visits_influenza":"0.33","percent_visits_rsv":"0.33","week_end":"2023-10-07"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.54","percent_visits_covid":"1.94","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.07","percent_visits_covid":"0.69","percent_visits_influenza":"0.83","percent_visits_rsv":"0.55","week_end":"2023-10-21"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.76","percent_visits_covid":"2.79","percent_visits_influenza":"0.42","percent_visits_rsv":"0.56","week_end":"2023-10-28"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.83","percent_visits_covid":"2.38","percent_visits_influenza":"0.15","percent_visits_rsv":"0.3","week_end":"2023-11-04"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.44","percent_visits_covid":"0.76","percent_visits_influenza":"1.37","percent_visits_rsv":"0.31","week_end":"2023-11-11"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.09","percent_visits_covid":"2.36","percent_visits_influenza":"0.31","percent_visits_rsv":"1.42","week_end":"2023-11-18"}
-,{"county":"Boone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.34","percent_visits_covid":"3.66","percent_visits_influenza":"0.46","percent_visits_rsv":"1.22","week_end":"2023-11-25"}
-,{"county":"Boone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.08","percent_visits_covid":"3.23","percent_visits_influenza":"0.62","percent_visits_rsv":"1.23","week_end":"2023-12-02"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.06","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"1.48","week_end":"2022-10-01"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.21","percent_visits_covid":"1.4","percent_visits_influenza":"1.75","percent_visits_rsv":"1.4","week_end":"2022-10-08"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.68","percent_visits_covid":"0.32","percent_visits_influenza":"4.42","percent_visits_rsv":"0.95","week_end":"2022-10-15"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.7","percent_visits_covid":"0.95","percent_visits_influenza":"3.48","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.29","percent_visits_covid":"0.54","percent_visits_influenza":"10.22","percent_visits_rsv":"0.54","week_end":"2022-10-29"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.2","percent_visits_covid":"0.21","percent_visits_influenza":"5.79","percent_visits_rsv":"0.21","week_end":"2022-11-05"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.7","percent_visits_covid":"1.4","percent_visits_influenza":"10.64","percent_visits_rsv":"0.47","week_end":"2022-11-12"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.67","percent_visits_covid":"0.67","percent_visits_influenza":"10.0","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"14.05","percent_visits_covid":"1.63","percent_visits_influenza":"12.73","percent_visits_rsv":"0.51","week_end":"2022-11-26"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.71","percent_visits_covid":"2.54","percent_visits_influenza":"10.54","percent_visits_rsv":"0.29","week_end":"2022-12-03"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.41","percent_visits_covid":"2.51","percent_visits_influenza":"8.68","percent_visits_rsv":"0.19","week_end":"2022-12-10"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.87","percent_visits_covid":"1.61","percent_visits_influenza":"5.26","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"9.45","percent_visits_covid":"3.36","percent_visits_influenza":"6.41","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.06","percent_visits_covid":"4.36","percent_visits_influenza":"6.64","percent_visits_rsv":"0.19","week_end":"2022-12-31"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.28","percent_visits_covid":"3.51","percent_visits_influenza":"3.51","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.42","percent_visits_covid":"3.11","percent_visits_influenza":"3.91","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.83","percent_visits_covid":"2.26","percent_visits_influenza":"3.29","percent_visits_rsv":"0.21","week_end":"2023-01-21"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.26","percent_visits_covid":"2.37","percent_visits_influenza":"4.21","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.65","percent_visits_covid":"1.52","percent_visits_influenza":"4.34","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.32","percent_visits_covid":"1.6","percent_visits_influenza":"3.91","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.39","percent_visits_covid":"1.6","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2023-02-18"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.54","percent_visits_covid":"2.13","percent_visits_influenza":"3.94","percent_visits_rsv":"0.21","week_end":"2023-02-25"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.04","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.88","percent_visits_covid":"1.22","percent_visits_influenza":"3.76","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.11","percent_visits_covid":"1.41","percent_visits_influenza":"3.7","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.69","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.81","percent_visits_covid":"0.5","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.28","percent_visits_covid":"0.65","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.15","percent_visits_covid":"0.63","percent_visits_influenza":"2.62","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.81","percent_visits_covid":"0.32","percent_visits_influenza":"1.6","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.08","percent_visits_covid":"0.73","percent_visits_influenza":"1.56","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.23","percent_visits_covid":"0.85","percent_visits_influenza":"1.48","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.18","percent_visits_covid":"0.5","percent_visits_influenza":"1.59","percent_visits_rsv":"0.1","week_end":"2023-05-13"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.37","percent_visits_covid":"1.09","percent_visits_influenza":"3.38","percent_visits_rsv":"0.4","week_end":"2023-05-20"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.77","percent_visits_covid":"0.69","percent_visits_influenza":"1.08","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.46","percent_visits_covid":"0.49","percent_visits_influenza":"0.97","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.92","percent_visits_covid":"1.01","percent_visits_influenza":"1.01","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.43","percent_visits_covid":"0.1","percent_visits_influenza":"1.12","percent_visits_rsv":"0.31","week_end":"2023-06-17"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"0.62","percent_visits_influenza":"1.03","percent_visits_rsv":"0.1","week_end":"2023-06-24"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.48","percent_visits_covid":"0.42","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-07-01"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.99","percent_visits_covid":"0.63","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.8","percent_visits_rsv":"0.2","week_end":"2023-07-15"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.39","percent_visits_covid":"0.89","percent_visits_influenza":"1.49","percent_visits_rsv":"0.2","week_end":"2023-07-22"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.95","percent_visits_covid":"1.3","percent_visits_influenza":"0.76","percent_visits_rsv":"0.11","week_end":"2023-07-29"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.36","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"0.1","week_end":"2023-08-05"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"1.37","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.4","percent_visits_covid":"2.06","percent_visits_influenza":"1.34","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Bradley","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.88","percent_visits_covid":"3.66","percent_visits_influenza":"2.31","percent_visits_rsv":"0.29","week_end":"2023-08-26"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.38","percent_visits_covid":"5.45","percent_visits_influenza":"1.13","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.98","percent_visits_influenza":"1.72","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.1","percent_visits_covid":"1.9","percent_visits_influenza":"1.4","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.1","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2023-09-23"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.05","percent_visits_covid":"1.81","percent_visits_influenza":"0.86","percent_visits_rsv":"0.48","week_end":"2023-09-30"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.78","percent_visits_covid":"1.28","percent_visits_influenza":"1.39","percent_visits_rsv":"0.43","week_end":"2023-10-07"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.56","percent_visits_covid":"1.82","percent_visits_influenza":"2.63","percent_visits_rsv":"0.3","week_end":"2023-10-14"}
-,{"county":"Bradley","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.76","percent_visits_covid":"0.97","percent_visits_influenza":"2.36","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.12","percent_visits_covid":"0.77","percent_visits_influenza":"2.49","percent_visits_rsv":"1.15","week_end":"2023-10-28"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.95","percent_visits_covid":"0.44","percent_visits_influenza":"2.63","percent_visits_rsv":"1.43","week_end":"2023-11-04"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.58","percent_visits_covid":"1.06","percent_visits_influenza":"1.74","percent_visits_rsv":"0.87","week_end":"2023-11-11"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.59","percent_visits_covid":"0.82","percent_visits_influenza":"2.16","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.67","percent_visits_covid":"2.0","percent_visits_influenza":"2.73","percent_visits_rsv":"1.68","week_end":"2023-11-25"}
-,{"county":"Bradley","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.04","percent_visits_covid":"0.72","percent_visits_influenza":"2.36","percent_visits_rsv":"2.36","week_end":"2023-12-02"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.47","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.47","week_end":"2022-10-01"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.63","percent_visits_covid":"0.0","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.49","percent_visits_covid":"0.0","percent_visits_influenza":"1.12","percent_visits_rsv":"3.37","week_end":"2022-10-15"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.9","percent_visits_covid":"0.63","percent_visits_influenza":"0.63","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-29"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"10.6","percent_visits_covid":"1.38","percent_visits_influenza":"7.37","percent_visits_rsv":"2.3","week_end":"2022-11-05"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"15.36","percent_visits_covid":"1.12","percent_visits_influenza":"13.86","percent_visits_rsv":"0.75","week_end":"2022-11-12"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"13.21","percent_visits_covid":"0.0","percent_visits_influenza":"13.21","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"8.41","percent_visits_covid":"0.47","percent_visits_influenza":"7.94","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"9.09","percent_visits_covid":"0.43","percent_visits_influenza":"8.66","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"6.67","percent_visits_covid":"2.05","percent_visits_influenza":"4.62","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"5.85","percent_visits_covid":"0.58","percent_visits_influenza":"5.26","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.55","percent_visits_covid":"0.0","percent_visits_influenza":"2.84","percent_visits_rsv":"0.71","week_end":"2022-12-24"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.58","percent_visits_covid":"3.92","percent_visits_influenza":"1.31","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.98","percent_visits_covid":"2.84","percent_visits_influenza":"0.57","percent_visits_rsv":"0.57","week_end":"2023-01-07"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.72","percent_visits_covid":"1.36","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.25","percent_visits_covid":"0.62","percent_visits_influenza":"0.62","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.59","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.17","percent_visits_covid":"3.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.7","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.53","percent_visits_covid":"0.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.46","percent_visits_covid":"1.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.08","week_end":"2023-04-22"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.08","percent_visits_covid":"1.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.93","percent_visits_covid":"0.93","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.52","percent_visits_covid":"0.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.65","percent_visits_covid":"0.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.57","percent_visits_covid":"0.0","percent_visits_influenza":"0.57","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.51","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.51","week_end":"2023-07-08"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.07","percent_visits_covid":"1.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.56","percent_visits_covid":"2.05","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.88","percent_visits_covid":"3.4","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.55","percent_visits_covid":"4.04","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"5.43","percent_visits_covid":"4.52","percent_visits_influenza":"0.9","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.91","percent_visits_covid":"2.91","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.07","percent_visits_covid":"2.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.62","percent_visits_covid":"2.62","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.01","percent_visits_covid":"1.01","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.09","percent_visits_covid":"3.09","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.95","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.19","percent_visits_covid":"2.66","percent_visits_influenza":"0.0","percent_visits_rsv":"0.53","week_end":"2023-10-28"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.61","percent_visits_covid":"3.61","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.11","percent_visits_covid":"1.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.91","percent_visits_covid":"1.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.48","week_end":"2023-11-18"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.33","percent_visits_covid":"1.11","percent_visits_influenza":"0.0","percent_visits_rsv":"2.22","week_end":"2023-11-25"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.92","percent_visits_covid":"0.98","percent_visits_influenza":"0.0","percent_visits_rsv":"2.94","week_end":"2023-12-02"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2022-10-01"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.88","percent_visits_covid":"0.15","percent_visits_influenza":"0.15","percent_visits_rsv":"0.59","week_end":"2022-10-08"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.29","percent_visits_covid":"1.29","percent_visits_influenza":"0.29","percent_visits_rsv":"0.71","week_end":"2022-10-15"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.54","percent_visits_covid":"0.32","percent_visits_influenza":"1.9","percent_visits_rsv":"0.32","week_end":"2022-10-22"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.12","percent_visits_covid":"0.47","percent_visits_influenza":"2.19","percent_visits_rsv":"0.47","week_end":"2022-10-29"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.88","percent_visits_covid":"0.55","percent_visits_influenza":"2.2","percent_visits_rsv":"0.14","week_end":"2022-11-05"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.62","percent_visits_rsv":"0.27","week_end":"2022-11-12"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.99","percent_visits_covid":"0.28","percent_visits_influenza":"2.28","percent_visits_rsv":"0.43","week_end":"2022-11-19"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.5","percent_visits_covid":"0.4","percent_visits_influenza":"3.84","percent_visits_rsv":"0.26","week_end":"2022-11-26"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.43","percent_visits_covid":"1.07","percent_visits_influenza":"3.22","percent_visits_rsv":"0.13","week_end":"2022-12-03"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.18","percent_visits_covid":"1.5","percent_visits_influenza":"3.27","percent_visits_rsv":"0.41","week_end":"2022-12-10"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.94","percent_visits_covid":"0.56","percent_visits_influenza":"3.38","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.91","percent_visits_covid":"2.13","percent_visits_influenza":"2.13","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.21","percent_visits_covid":"1.31","percent_visits_influenza":"2.47","percent_visits_rsv":"0.44","week_end":"2022-12-31"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.8","percent_visits_covid":"0.78","percent_visits_influenza":"2.02","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.02","percent_visits_covid":"1.96","percent_visits_influenza":"1.06","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.49","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.86","percent_visits_covid":"0.45","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.84","percent_visits_covid":"0.5","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.56","percent_visits_covid":"0.31","percent_visits_influenza":"1.24","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.94","percent_visits_covid":"0.31","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.48","percent_visits_covid":"0.16","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.61","percent_visits_covid":"0.46","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.15","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-03-18"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.16","percent_visits_covid":"0.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.29","percent_visits_covid":"0.15","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.13","percent_visits_covid":"0.99","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.74","percent_visits_covid":"1.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.55","percent_visits_covid":"0.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.26","percent_visits_covid":"0.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.41","percent_visits_covid":"0.27","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.15","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.81","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.71","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-15"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.44","percent_visits_covid":"0.29","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-07-22"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.47","percent_visits_covid":"0.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.9","percent_visits_covid":"0.75","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-08-05"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.55","percent_visits_covid":"2.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.79","percent_visits_covid":"2.79","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.17","percent_visits_covid":"3.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.2","percent_visits_covid":"4.81","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.55","percent_visits_covid":"3.41","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.18","percent_visits_covid":"2.03","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Carroll","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.27","percent_visits_covid":"1.13","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.5","percent_visits_covid":"1.83","percent_visits_influenza":"0.33","percent_visits_rsv":"0.33","week_end":"2023-10-07"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.54","percent_visits_covid":"1.94","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.07","percent_visits_covid":"0.69","percent_visits_influenza":"0.83","percent_visits_rsv":"0.55","week_end":"2023-10-21"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.76","percent_visits_covid":"2.79","percent_visits_influenza":"0.42","percent_visits_rsv":"0.56","week_end":"2023-10-28"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.83","percent_visits_covid":"2.38","percent_visits_influenza":"0.15","percent_visits_rsv":"0.3","week_end":"2023-11-04"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.44","percent_visits_covid":"0.76","percent_visits_influenza":"1.37","percent_visits_rsv":"0.31","week_end":"2023-11-11"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.09","percent_visits_covid":"2.36","percent_visits_influenza":"0.31","percent_visits_rsv":"1.42","week_end":"2023-11-18"}
-,{"county":"Carroll","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.34","percent_visits_covid":"3.66","percent_visits_influenza":"0.46","percent_visits_rsv":"1.22","week_end":"2023-11-25"}
-,{"county":"Carroll","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.08","percent_visits_covid":"3.23","percent_visits_influenza":"0.62","percent_visits_rsv":"1.23","week_end":"2023-12-02"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.69","percent_visits_covid":"0.0","percent_visits_influenza":"1.54","percent_visits_rsv":"1.15","week_end":"2022-10-01"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.31","percent_visits_covid":"0.41","percent_visits_influenza":"1.24","percent_visits_rsv":"1.65","week_end":"2022-10-08"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"9.76","percent_visits_covid":"2.44","percent_visits_influenza":"5.28","percent_visits_rsv":"2.03","week_end":"2022-10-15"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"6.55","percent_visits_covid":"0.0","percent_visits_influenza":"5.68","percent_visits_rsv":"0.87","week_end":"2022-10-22"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"5.51","percent_visits_covid":"0.79","percent_visits_influenza":"4.33","percent_visits_rsv":"0.39","week_end":"2022-10-29"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"9.52","percent_visits_covid":"0.37","percent_visits_influenza":"9.52","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"8.81","percent_visits_covid":"1.15","percent_visits_influenza":"7.28","percent_visits_rsv":"0.38","week_end":"2022-11-12"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"4.66","percent_visits_covid":"0.42","percent_visits_influenza":"4.24","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"14.23","percent_visits_covid":"1.19","percent_visits_influenza":"13.04","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"9.09","percent_visits_covid":"1.52","percent_visits_influenza":"6.82","percent_visits_rsv":"0.76","week_end":"2022-12-03"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.82","percent_visits_covid":"0.36","percent_visits_influenza":"1.46","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"9.32","percent_visits_covid":"5.08","percent_visits_influenza":"3.81","percent_visits_rsv":"0.42","week_end":"2022-12-17"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"5.86","percent_visits_covid":"3.52","percent_visits_influenza":"2.73","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"7.04","percent_visits_covid":"5.56","percent_visits_influenza":"1.48","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"4.17","percent_visits_covid":"2.08","percent_visits_influenza":"2.08","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.2","percent_visits_covid":"1.32","percent_visits_influenza":"0.88","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.87","percent_visits_covid":"0.87","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.35","percent_visits_covid":"3.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.58","percent_visits_covid":"1.72","percent_visits_influenza":"0.86","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.26","percent_visits_covid":"2.33","percent_visits_influenza":"0.93","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"4.27","percent_visits_covid":"2.99","percent_visits_influenza":"1.71","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.1","percent_visits_covid":"1.33","percent_visits_influenza":"1.77","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.44","percent_visits_covid":"0.96","percent_visits_influenza":"0.48","percent_visits_rsv":"0.48","week_end":"2023-03-04"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.46","percent_visits_covid":"0.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.39","percent_visits_covid":"1.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.45","percent_visits_covid":"0.45","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.91","percent_visits_covid":"0.91","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.47","percent_visits_covid":"0.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.42","percent_visits_covid":"0.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.37","percent_visits_covid":"0.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.83","percent_visits_covid":"0.83","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.35","percent_visits_covid":"0.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.36","percent_visits_covid":"0.36","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.43","percent_visits_covid":"2.02","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.22","percent_visits_covid":"1.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.17","percent_visits_covid":"1.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.15","percent_visits_covid":"1.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.22","percent_visits_covid":"1.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Chicot","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.36","percent_visits_covid":"2.99","percent_visits_influenza":"0.37","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"7.58","percent_visits_covid":"7.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.78","percent_visits_covid":"3.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.75","percent_visits_covid":"0.75","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.4","percent_visits_covid":"0.4","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Chicot","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.82","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.41","week_end":"2023-09-30"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"0.9","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.9","week_end":"2023-10-07"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"4.72","percent_visits_covid":"3.3","percent_visits_influenza":"0.0","percent_visits_rsv":"1.42","week_end":"2023-10-14"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.97","percent_visits_covid":"0.79","percent_visits_influenza":"0.0","percent_visits_rsv":"1.18","week_end":"2023-10-21"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.62","percent_visits_covid":"0.0","percent_visits_influenza":"0.44","percent_visits_rsv":"2.18","week_end":"2023-10-28"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.41","percent_visits_covid":"0.4","percent_visits_influenza":"0.0","percent_visits_rsv":"2.01","week_end":"2023-11-04"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"1.57","percent_visits_covid":"0.0","percent_visits_influenza":"1.18","percent_visits_rsv":"0.39","week_end":"2023-11-11"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"3.08","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"2.69","week_end":"2023-11-18"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"5.98","percent_visits_covid":"1.71","percent_visits_influenza":"1.28","percent_visits_rsv":"2.99","week_end":"2023-11-25"}
-,{"county":"Chicot","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ashley, AR - Chicot, AR","hsa_counties":"Ashley, Chicot","percent_visits_combined":"2.21","percent_visits_covid":"1.11","percent_visits_influenza":"0.74","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.0","percent_visits_rsv":"0.33","week_end":"2022-10-08"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.17","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.23","week_end":"2022-10-15"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.41","percent_visits_covid":"0.64","percent_visits_influenza":"0.35","percent_visits_rsv":"0.41","week_end":"2022-10-22"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.25","percent_visits_covid":"0.73","percent_visits_influenza":"0.91","percent_visits_rsv":"0.61","week_end":"2022-10-29"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.72","percent_visits_covid":"0.68","percent_visits_influenza":"1.67","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.64","percent_visits_covid":"0.87","percent_visits_influenza":"3.48","percent_visits_rsv":"0.29","week_end":"2022-11-12"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"6.58","percent_visits_covid":"0.77","percent_visits_influenza":"5.65","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"10.75","percent_visits_covid":"1.29","percent_visits_influenza":"8.97","percent_visits_rsv":"0.55","week_end":"2022-11-26"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"7.59","percent_visits_covid":"1.44","percent_visits_influenza":"6.14","percent_visits_rsv":"0.1","week_end":"2022-12-03"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"5.71","percent_visits_covid":"1.31","percent_visits_influenza":"4.34","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.43","percent_visits_covid":"2.01","percent_visits_influenza":"2.24","percent_visits_rsv":"0.18","week_end":"2022-12-17"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.57","percent_visits_covid":"1.25","percent_visits_influenza":"1.32","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.91","percent_visits_covid":"2.94","percent_visits_influenza":"1.91","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"3.07","percent_visits_covid":"2.3","percent_visits_influenza":"0.77","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.65","percent_visits_covid":"1.52","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"0.96","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-01-28"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.25","percent_visits_covid":"0.84","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.23","percent_visits_covid":"1.04","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.09","percent_visits_covid":"0.9","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-18"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.63","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.59","percent_visits_covid":"0.53","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.73","percent_visits_covid":"0.61","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-03-18"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.03","percent_visits_covid":"0.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-03-25"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.44","percent_visits_covid":"1.14","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.99","percent_visits_covid":"0.93","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.86","percent_visits_covid":"0.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.42","percent_visits_covid":"0.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.65","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-05-06"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.5","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-05-20"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.07","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.38","percent_visits_covid":"0.31","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.46","percent_visits_covid":"0.4","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.31","percent_visits_covid":"1.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.95","percent_visits_covid":"0.95","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.85","percent_visits_covid":"1.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Clark","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.48","percent_visits_covid":"2.48","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.81","percent_visits_covid":"2.76","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.7","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.1","percent_visits_covid":"1.05","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Clark","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.11","percent_visits_covid":"1.11","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-10-14"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.93","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-10-21"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.87","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-10-28"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.7","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-11-04"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.38","percent_visits_covid":"1.43","percent_visits_influenza":"0.48","percent_visits_rsv":"0.48","week_end":"2023-11-11"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.33","percent_visits_covid":"0.78","percent_visits_influenza":"0.36","percent_visits_rsv":"1.19","week_end":"2023-11-18"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.1","percent_visits_covid":"1.84","percent_visits_influenza":"0.53","percent_visits_rsv":"1.9","week_end":"2023-11-25"}
-,{"county":"Clark","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.95","percent_visits_covid":"0.88","percent_visits_influenza":"0.53","percent_visits_rsv":"1.53","week_end":"2023-12-02"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.01","percent_visits_covid":"1.42","percent_visits_influenza":"0.38","percent_visits_rsv":"1.34","week_end":"2022-10-01"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.3","percent_visits_covid":"1.3","percent_visits_influenza":"0.33","percent_visits_rsv":"1.67","week_end":"2022-10-08"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.59","percent_visits_covid":"1.49","percent_visits_influenza":"1.26","percent_visits_rsv":"2.0","week_end":"2022-10-15"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.94","percent_visits_covid":"1.56","percent_visits_influenza":"0.94","percent_visits_rsv":"1.44","week_end":"2022-10-22"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.81","percent_visits_covid":"1.03","percent_visits_influenza":"2.67","percent_visits_rsv":"1.22","week_end":"2022-10-29"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"6.71","percent_visits_covid":"1.26","percent_visits_influenza":"3.93","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.81","percent_visits_covid":"1.15","percent_visits_influenza":"6.22","percent_visits_rsv":"1.62","week_end":"2022-11-12"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.86","percent_visits_covid":"0.98","percent_visits_influenza":"7.08","percent_visits_rsv":"0.95","week_end":"2022-11-19"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"15.56","percent_visits_covid":"1.52","percent_visits_influenza":"13.26","percent_visits_rsv":"1.18","week_end":"2022-11-26"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"10.5","percent_visits_covid":"1.84","percent_visits_influenza":"8.06","percent_visits_rsv":"1.08","week_end":"2022-12-03"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.98","percent_visits_covid":"2.02","percent_visits_influenza":"6.51","percent_visits_rsv":"0.56","week_end":"2022-12-10"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.44","percent_visits_covid":"2.76","percent_visits_influenza":"4.49","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.07","percent_visits_covid":"3.94","percent_visits_influenza":"2.84","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.77","percent_visits_covid":"4.9","percent_visits_influenza":"2.76","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.9","percent_visits_covid":"3.77","percent_visits_influenza":"2.01","percent_visits_rsv":"0.25","week_end":"2023-01-07"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.98","percent_visits_covid":"3.68","percent_visits_influenza":"0.94","percent_visits_rsv":"0.43","week_end":"2023-01-14"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.14","percent_visits_covid":"2.5","percent_visits_influenza":"0.52","percent_visits_rsv":"0.16","week_end":"2023-01-21"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.17","percent_visits_covid":"2.56","percent_visits_influenza":"0.45","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.95","percent_visits_covid":"2.56","percent_visits_influenza":"0.26","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.12","percent_visits_covid":"1.76","percent_visits_influenza":"0.32","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.36","percent_visits_covid":"2.08","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.98","percent_visits_covid":"1.52","percent_visits_influenza":"0.43","percent_visits_rsv":"0.04","week_end":"2023-02-25"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.79","percent_visits_covid":"1.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.91","percent_visits_influenza":"0.12","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.08","percent_visits_covid":"0.81","percent_visits_influenza":"0.15","percent_visits_rsv":"0.12","week_end":"2023-03-18"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.26","percent_visits_covid":"0.9","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-03-25"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.34","percent_visits_covid":"0.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.94","percent_visits_covid":"0.7","percent_visits_influenza":"0.16","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.18","percent_visits_covid":"0.87","percent_visits_influenza":"0.12","percent_visits_rsv":"0.2","week_end":"2023-04-15"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.79","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.74","percent_visits_covid":"1.58","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-04-29"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.82","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.2","percent_visits_covid":"0.84","percent_visits_influenza":"0.35","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.81","percent_visits_covid":"0.6","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.59","percent_visits_covid":"0.37","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-05-27"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.37","percent_visits_covid":"0.26","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.33","percent_visits_covid":"0.22","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.25","percent_visits_covid":"0.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.67","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.52","percent_visits_covid":"0.29","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.41","percent_visits_covid":"0.26","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.54","percent_visits_covid":"0.51","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.44","percent_visits_covid":"0.37","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.14","percent_visits_covid":"0.99","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.99","percent_visits_covid":"1.88","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.15","percent_visits_covid":"3.08","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.82","percent_visits_covid":"3.75","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.25","percent_visits_covid":"4.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.92","percent_visits_covid":"4.65","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-09-09"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.89","percent_visits_covid":"2.62","percent_visits_influenza":"0.2","percent_visits_rsv":"0.07","week_end":"2023-09-16"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.64","percent_visits_covid":"2.43","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-09-23"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.25","percent_visits_covid":"1.72","percent_visits_influenza":"0.49","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.06","percent_visits_covid":"0.9","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.33","percent_visits_covid":"1.15","percent_visits_influenza":"2.11","percent_visits_rsv":"0.07","week_end":"2023-10-14"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.09","percent_visits_covid":"1.13","percent_visits_influenza":"2.78","percent_visits_rsv":"0.18","week_end":"2023-10-21"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.43","percent_visits_covid":"0.99","percent_visits_influenza":"2.05","percent_visits_rsv":"0.46","week_end":"2023-10-28"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.93","percent_visits_covid":"1.2","percent_visits_influenza":"2.14","percent_visits_rsv":"0.62","week_end":"2023-11-04"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.37","percent_visits_covid":"1.67","percent_visits_influenza":"2.99","percent_visits_rsv":"0.92","week_end":"2023-11-11"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.54","percent_visits_covid":"1.72","percent_visits_influenza":"2.45","percent_visits_rsv":"1.47","week_end":"2023-11-18"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.42","percent_visits_covid":"1.2","percent_visits_influenza":"2.62","percent_visits_rsv":"1.76","week_end":"2023-11-25"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.64","percent_visits_covid":"1.8","percent_visits_influenza":"1.45","percent_visits_rsv":"1.42","week_end":"2023-12-02"}
-,{"county":"Cleburne","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.24","percent_visits_covid":"1.12","percent_visits_influenza":"0.12","percent_visits_rsv":"1.0","week_end":"2022-10-01"}
-,{"county":"Cleburne","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.57","percent_visits_covid":"1.23","percent_visits_influenza":"0.49","percent_visits_rsv":"0.86","week_end":"2022-10-08"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.9","percent_visits_covid":"1.36","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.59","percent_visits_covid":"0.62","percent_visits_influenza":"1.48","percent_visits_rsv":"0.49","week_end":"2022-10-22"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.39","percent_visits_covid":"1.07","percent_visits_influenza":"2.25","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"8.16","percent_visits_covid":"1.58","percent_visits_influenza":"5.72","percent_visits_rsv":"0.97","week_end":"2022-11-05"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"5.56","percent_visits_covid":"1.45","percent_visits_influenza":"3.5","percent_visits_rsv":"0.72","week_end":"2022-11-12"}
-,{"county":"Cleburne","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.87","percent_visits_covid":"1.08","percent_visits_influenza":"4.58","percent_visits_rsv":"1.21","week_end":"2022-11-19"}
-,{"county":"Cleburne","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"7.31","percent_visits_covid":"1.97","percent_visits_influenza":"5.34","percent_visits_rsv":"0.12","week_end":"2022-11-26"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"7.89","percent_visits_covid":"2.06","percent_visits_influenza":"5.83","percent_visits_rsv":"0.12","week_end":"2022-12-03"}
-,{"county":"Cleburne","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.57","percent_visits_covid":"1.79","percent_visits_influenza":"3.82","percent_visits_rsv":"0.96","week_end":"2022-12-10"}
-,{"county":"Cleburne","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.57","percent_visits_covid":"2.28","percent_visits_influenza":"1.52","percent_visits_rsv":"0.76","week_end":"2022-12-17"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.91","percent_visits_covid":"1.62","percent_visits_influenza":"2.02","percent_visits_rsv":"0.54","week_end":"2022-12-24"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.09","percent_visits_covid":"3.82","percent_visits_influenza":"1.91","percent_visits_rsv":"0.36","week_end":"2022-12-31"}
-,{"county":"Cleburne","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.48","percent_visits_covid":"3.23","percent_visits_influenza":"1.0","percent_visits_rsv":"0.37","week_end":"2023-01-07"}
-,{"county":"Cleburne","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.83","percent_visits_covid":"2.32","percent_visits_influenza":"0.13","percent_visits_rsv":"0.39","week_end":"2023-01-14"}
-,{"county":"Cleburne","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.93","percent_visits_covid":"1.54","percent_visits_influenza":"0.26","percent_visits_rsv":"0.13","week_end":"2023-01-21"}
-,{"county":"Cleburne","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.96","percent_visits_covid":"0.69","percent_visits_influenza":"0.14","percent_visits_rsv":"0.14","week_end":"2023-01-28"}
-,{"county":"Cleburne","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.66","percent_visits_covid":"0.55","percent_visits_influenza":"0.97","percent_visits_rsv":"0.14","week_end":"2023-02-04"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.68","percent_visits_covid":"0.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-02-11"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.16","percent_visits_covid":"0.39","percent_visits_influenza":"0.26","percent_visits_rsv":"0.52","week_end":"2023-02-18"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.77","percent_visits_covid":"0.64","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.83","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-04"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-11"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.42","percent_visits_covid":"1.17","percent_visits_influenza":"0.13","percent_visits_rsv":"0.13","week_end":"2023-03-18"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.29","percent_visits_covid":"1.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.62","percent_visits_covid":"0.62","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.58","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.14","percent_visits_covid":"2.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.13","percent_visits_covid":"1.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.51","percent_visits_covid":"0.51","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.57","percent_visits_covid":"1.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.81","percent_visits_covid":"1.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Cleburne","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.05","percent_visits_covid":"1.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Cleburne","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.68","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Cleburne","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.05","percent_visits_covid":"1.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.97","percent_visits_covid":"2.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.5","percent_visits_covid":"3.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.86","percent_visits_covid":"2.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.24","percent_visits_covid":"3.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.23","percent_visits_covid":"2.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.29","percent_visits_covid":"2.29","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.57","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.0","percent_visits_covid":"1.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.55","percent_visits_covid":"3.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.73","percent_visits_covid":"1.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.58","week_end":"2023-11-04"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.26","percent_visits_covid":"3.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.53","week_end":"2023-11-11"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.47","percent_visits_covid":"2.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.12","percent_visits_covid":"1.04","percent_visits_influenza":"1.04","percent_visits_rsv":"1.04","week_end":"2023-11-25"}
-,{"county":"Cleburne","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.75","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"1.17","week_end":"2023-12-02"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.06","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"1.48","week_end":"2022-10-01"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.21","percent_visits_covid":"1.4","percent_visits_influenza":"1.75","percent_visits_rsv":"1.4","week_end":"2022-10-08"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.68","percent_visits_covid":"0.32","percent_visits_influenza":"4.42","percent_visits_rsv":"0.95","week_end":"2022-10-15"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.7","percent_visits_covid":"0.95","percent_visits_influenza":"3.48","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.29","percent_visits_covid":"0.54","percent_visits_influenza":"10.22","percent_visits_rsv":"0.54","week_end":"2022-10-29"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.2","percent_visits_covid":"0.21","percent_visits_influenza":"5.79","percent_visits_rsv":"0.21","week_end":"2022-11-05"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.7","percent_visits_covid":"1.4","percent_visits_influenza":"10.64","percent_visits_rsv":"0.47","week_end":"2022-11-12"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.67","percent_visits_covid":"0.67","percent_visits_influenza":"10.0","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"14.05","percent_visits_covid":"1.63","percent_visits_influenza":"12.73","percent_visits_rsv":"0.51","week_end":"2022-11-26"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.71","percent_visits_covid":"2.54","percent_visits_influenza":"10.54","percent_visits_rsv":"0.29","week_end":"2022-12-03"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.41","percent_visits_covid":"2.51","percent_visits_influenza":"8.68","percent_visits_rsv":"0.19","week_end":"2022-12-10"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.87","percent_visits_covid":"1.61","percent_visits_influenza":"5.26","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"9.45","percent_visits_covid":"3.36","percent_visits_influenza":"6.41","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.06","percent_visits_covid":"4.36","percent_visits_influenza":"6.64","percent_visits_rsv":"0.19","week_end":"2022-12-31"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.28","percent_visits_covid":"3.51","percent_visits_influenza":"3.51","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.42","percent_visits_covid":"3.11","percent_visits_influenza":"3.91","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.83","percent_visits_covid":"2.26","percent_visits_influenza":"3.29","percent_visits_rsv":"0.21","week_end":"2023-01-21"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.26","percent_visits_covid":"2.37","percent_visits_influenza":"4.21","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.65","percent_visits_covid":"1.52","percent_visits_influenza":"4.34","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.32","percent_visits_covid":"1.6","percent_visits_influenza":"3.91","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.39","percent_visits_covid":"1.6","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2023-02-18"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.54","percent_visits_covid":"2.13","percent_visits_influenza":"3.94","percent_visits_rsv":"0.21","week_end":"2023-02-25"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.04","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.88","percent_visits_covid":"1.22","percent_visits_influenza":"3.76","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.11","percent_visits_covid":"1.41","percent_visits_influenza":"3.7","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.69","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.81","percent_visits_covid":"0.5","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.28","percent_visits_covid":"0.65","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.15","percent_visits_covid":"0.63","percent_visits_influenza":"2.62","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.81","percent_visits_covid":"0.32","percent_visits_influenza":"1.6","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.08","percent_visits_covid":"0.73","percent_visits_influenza":"1.56","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.23","percent_visits_covid":"0.85","percent_visits_influenza":"1.48","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.18","percent_visits_covid":"0.5","percent_visits_influenza":"1.59","percent_visits_rsv":"0.1","week_end":"2023-05-13"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.37","percent_visits_covid":"1.09","percent_visits_influenza":"3.38","percent_visits_rsv":"0.4","week_end":"2023-05-20"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.77","percent_visits_covid":"0.69","percent_visits_influenza":"1.08","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.46","percent_visits_covid":"0.49","percent_visits_influenza":"0.97","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.92","percent_visits_covid":"1.01","percent_visits_influenza":"1.01","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.43","percent_visits_covid":"0.1","percent_visits_influenza":"1.12","percent_visits_rsv":"0.31","week_end":"2023-06-17"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"0.62","percent_visits_influenza":"1.03","percent_visits_rsv":"0.1","week_end":"2023-06-24"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.48","percent_visits_covid":"0.42","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-07-01"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.99","percent_visits_covid":"0.63","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.8","percent_visits_rsv":"0.2","week_end":"2023-07-15"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.39","percent_visits_covid":"0.89","percent_visits_influenza":"1.49","percent_visits_rsv":"0.2","week_end":"2023-07-22"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.95","percent_visits_covid":"1.3","percent_visits_influenza":"0.76","percent_visits_rsv":"0.11","week_end":"2023-07-29"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.36","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"0.1","week_end":"2023-08-05"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"1.37","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.4","percent_visits_covid":"2.06","percent_visits_influenza":"1.34","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Cleveland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.88","percent_visits_covid":"3.66","percent_visits_influenza":"2.31","percent_visits_rsv":"0.29","week_end":"2023-08-26"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.38","percent_visits_covid":"5.45","percent_visits_influenza":"1.13","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.98","percent_visits_influenza":"1.72","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.1","percent_visits_covid":"1.9","percent_visits_influenza":"1.4","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.1","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2023-09-23"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.05","percent_visits_covid":"1.81","percent_visits_influenza":"0.86","percent_visits_rsv":"0.48","week_end":"2023-09-30"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.78","percent_visits_covid":"1.28","percent_visits_influenza":"1.39","percent_visits_rsv":"0.43","week_end":"2023-10-07"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.56","percent_visits_covid":"1.82","percent_visits_influenza":"2.63","percent_visits_rsv":"0.3","week_end":"2023-10-14"}
-,{"county":"Cleveland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.76","percent_visits_covid":"0.97","percent_visits_influenza":"2.36","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.12","percent_visits_covid":"0.77","percent_visits_influenza":"2.49","percent_visits_rsv":"1.15","week_end":"2023-10-28"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.95","percent_visits_covid":"0.44","percent_visits_influenza":"2.63","percent_visits_rsv":"1.43","week_end":"2023-11-04"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.58","percent_visits_covid":"1.06","percent_visits_influenza":"1.74","percent_visits_rsv":"0.87","week_end":"2023-11-11"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.59","percent_visits_covid":"0.82","percent_visits_influenza":"2.16","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.67","percent_visits_covid":"2.0","percent_visits_influenza":"2.73","percent_visits_rsv":"1.68","week_end":"2023-11-25"}
-,{"county":"Cleveland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.04","percent_visits_covid":"0.72","percent_visits_influenza":"2.36","percent_visits_rsv":"2.36","week_end":"2023-12-02"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.47","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.47","week_end":"2022-10-01"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.63","percent_visits_covid":"0.0","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.49","percent_visits_covid":"0.0","percent_visits_influenza":"1.12","percent_visits_rsv":"3.37","week_end":"2022-10-15"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.9","percent_visits_covid":"0.63","percent_visits_influenza":"0.63","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-29"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"10.6","percent_visits_covid":"1.38","percent_visits_influenza":"7.37","percent_visits_rsv":"2.3","week_end":"2022-11-05"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"15.36","percent_visits_covid":"1.12","percent_visits_influenza":"13.86","percent_visits_rsv":"0.75","week_end":"2022-11-12"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"13.21","percent_visits_covid":"0.0","percent_visits_influenza":"13.21","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"8.41","percent_visits_covid":"0.47","percent_visits_influenza":"7.94","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"9.09","percent_visits_covid":"0.43","percent_visits_influenza":"8.66","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"6.67","percent_visits_covid":"2.05","percent_visits_influenza":"4.62","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"5.85","percent_visits_covid":"0.58","percent_visits_influenza":"5.26","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.55","percent_visits_covid":"0.0","percent_visits_influenza":"2.84","percent_visits_rsv":"0.71","week_end":"2022-12-24"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.58","percent_visits_covid":"3.92","percent_visits_influenza":"1.31","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.98","percent_visits_covid":"2.84","percent_visits_influenza":"0.57","percent_visits_rsv":"0.57","week_end":"2023-01-07"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.72","percent_visits_covid":"1.36","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.25","percent_visits_covid":"0.62","percent_visits_influenza":"0.62","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.59","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.17","percent_visits_covid":"3.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.7","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.53","percent_visits_covid":"0.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.46","percent_visits_covid":"1.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.08","week_end":"2023-04-22"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.08","percent_visits_covid":"1.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.93","percent_visits_covid":"0.93","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.52","percent_visits_covid":"0.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.65","percent_visits_covid":"0.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.57","percent_visits_covid":"0.0","percent_visits_influenza":"0.57","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.51","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.51","week_end":"2023-07-08"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.07","percent_visits_covid":"1.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.56","percent_visits_covid":"2.05","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.88","percent_visits_covid":"3.4","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.55","percent_visits_covid":"4.04","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"5.43","percent_visits_covid":"4.52","percent_visits_influenza":"0.9","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.91","percent_visits_covid":"2.91","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.07","percent_visits_covid":"2.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.62","percent_visits_covid":"2.62","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.01","percent_visits_covid":"1.01","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.09","percent_visits_covid":"3.09","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.95","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.19","percent_visits_covid":"2.66","percent_visits_influenza":"0.0","percent_visits_rsv":"0.53","week_end":"2023-10-28"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.61","percent_visits_covid":"3.61","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.11","percent_visits_covid":"1.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.91","percent_visits_covid":"1.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.48","week_end":"2023-11-18"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.33","percent_visits_covid":"1.11","percent_visits_influenza":"0.0","percent_visits_rsv":"2.22","week_end":"2023-11-25"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.92","percent_visits_covid":"0.98","percent_visits_influenza":"0.0","percent_visits_rsv":"2.94","week_end":"2023-12-02"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Conway","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Conway","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Conway","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.01","percent_visits_covid":"1.42","percent_visits_influenza":"0.38","percent_visits_rsv":"1.34","week_end":"2022-10-01"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.3","percent_visits_covid":"1.3","percent_visits_influenza":"0.33","percent_visits_rsv":"1.67","week_end":"2022-10-08"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.59","percent_visits_covid":"1.49","percent_visits_influenza":"1.26","percent_visits_rsv":"2.0","week_end":"2022-10-15"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.94","percent_visits_covid":"1.56","percent_visits_influenza":"0.94","percent_visits_rsv":"1.44","week_end":"2022-10-22"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.81","percent_visits_covid":"1.03","percent_visits_influenza":"2.67","percent_visits_rsv":"1.22","week_end":"2022-10-29"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"6.71","percent_visits_covid":"1.26","percent_visits_influenza":"3.93","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.81","percent_visits_covid":"1.15","percent_visits_influenza":"6.22","percent_visits_rsv":"1.62","week_end":"2022-11-12"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.86","percent_visits_covid":"0.98","percent_visits_influenza":"7.08","percent_visits_rsv":"0.95","week_end":"2022-11-19"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"15.56","percent_visits_covid":"1.52","percent_visits_influenza":"13.26","percent_visits_rsv":"1.18","week_end":"2022-11-26"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"10.5","percent_visits_covid":"1.84","percent_visits_influenza":"8.06","percent_visits_rsv":"1.08","week_end":"2022-12-03"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.98","percent_visits_covid":"2.02","percent_visits_influenza":"6.51","percent_visits_rsv":"0.56","week_end":"2022-12-10"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.44","percent_visits_covid":"2.76","percent_visits_influenza":"4.49","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.07","percent_visits_covid":"3.94","percent_visits_influenza":"2.84","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.77","percent_visits_covid":"4.9","percent_visits_influenza":"2.76","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.9","percent_visits_covid":"3.77","percent_visits_influenza":"2.01","percent_visits_rsv":"0.25","week_end":"2023-01-07"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.86","percent_visits_covid":"2.04","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.98","percent_visits_covid":"3.68","percent_visits_influenza":"0.94","percent_visits_rsv":"0.43","week_end":"2023-01-14"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.14","percent_visits_covid":"2.5","percent_visits_influenza":"0.52","percent_visits_rsv":"0.16","week_end":"2023-01-21"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.17","percent_visits_covid":"2.56","percent_visits_influenza":"0.45","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.95","percent_visits_covid":"2.56","percent_visits_influenza":"0.26","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.12","percent_visits_covid":"1.76","percent_visits_influenza":"0.32","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.36","percent_visits_covid":"2.08","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.98","percent_visits_covid":"1.52","percent_visits_influenza":"0.43","percent_visits_rsv":"0.04","week_end":"2023-02-25"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.79","percent_visits_covid":"1.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.91","percent_visits_influenza":"0.12","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.08","percent_visits_covid":"0.81","percent_visits_influenza":"0.15","percent_visits_rsv":"0.12","week_end":"2023-03-18"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.26","percent_visits_covid":"0.9","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-03-25"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.34","percent_visits_covid":"0.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.94","percent_visits_covid":"0.7","percent_visits_influenza":"0.16","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.18","percent_visits_covid":"0.87","percent_visits_influenza":"0.12","percent_visits_rsv":"0.2","week_end":"2023-04-15"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.79","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.74","percent_visits_covid":"1.58","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-04-29"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.82","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.2","percent_visits_covid":"0.84","percent_visits_influenza":"0.35","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.81","percent_visits_covid":"0.6","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.59","percent_visits_covid":"0.37","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-05-27"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.37","percent_visits_covid":"0.26","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.33","percent_visits_covid":"0.22","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.25","percent_visits_covid":"0.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.67","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.52","percent_visits_covid":"0.29","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.41","percent_visits_covid":"0.26","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.54","percent_visits_covid":"0.51","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.44","percent_visits_covid":"0.37","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.14","percent_visits_covid":"0.99","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.99","percent_visits_covid":"1.88","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.15","percent_visits_covid":"3.08","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.82","percent_visits_covid":"3.75","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.25","percent_visits_covid":"4.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.92","percent_visits_covid":"4.65","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-09-09"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.89","percent_visits_covid":"2.62","percent_visits_influenza":"0.2","percent_visits_rsv":"0.07","week_end":"2023-09-16"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.64","percent_visits_covid":"2.43","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-09-23"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.25","percent_visits_covid":"1.72","percent_visits_influenza":"0.49","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Craighead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.06","percent_visits_covid":"0.9","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.33","percent_visits_covid":"1.15","percent_visits_influenza":"2.11","percent_visits_rsv":"0.07","week_end":"2023-10-14"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.09","percent_visits_covid":"1.13","percent_visits_influenza":"2.78","percent_visits_rsv":"0.18","week_end":"2023-10-21"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.43","percent_visits_covid":"0.99","percent_visits_influenza":"2.05","percent_visits_rsv":"0.46","week_end":"2023-10-28"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.93","percent_visits_covid":"1.2","percent_visits_influenza":"2.14","percent_visits_rsv":"0.62","week_end":"2023-11-04"}
-,{"county":"Craighead","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.37","percent_visits_covid":"1.67","percent_visits_influenza":"2.99","percent_visits_rsv":"0.92","week_end":"2023-11-11"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.54","percent_visits_covid":"1.72","percent_visits_influenza":"2.45","percent_visits_rsv":"1.47","week_end":"2023-11-18"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.42","percent_visits_covid":"1.2","percent_visits_influenza":"2.62","percent_visits_rsv":"1.76","week_end":"2023-11-25"}
-,{"county":"Craighead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.64","percent_visits_covid":"1.8","percent_visits_influenza":"1.45","percent_visits_rsv":"1.42","week_end":"2023-12-02"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.69","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2022-10-08"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.23","percent_visits_covid":"0.98","percent_visits_influenza":"0.26","percent_visits_rsv":"0.98","week_end":"2022-10-15"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.06","percent_visits_covid":"0.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.75","week_end":"2022-10-22"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.83","percent_visits_covid":"0.4","percent_visits_influenza":"2.45","percent_visits_rsv":"2.05","week_end":"2022-10-29"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.84","percent_visits_covid":"0.95","percent_visits_influenza":"2.36","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.67","percent_visits_covid":"1.01","percent_visits_influenza":"3.78","percent_visits_rsv":"0.95","week_end":"2022-11-12"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.31","percent_visits_covid":"0.34","percent_visits_influenza":"4.49","percent_visits_rsv":"0.54","week_end":"2022-11-19"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"13.18","percent_visits_covid":"1.79","percent_visits_influenza":"10.84","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.0","percent_visits_covid":"1.05","percent_visits_influenza":"6.6","percent_visits_rsv":"0.41","week_end":"2022-12-03"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.77","percent_visits_covid":"1.88","percent_visits_influenza":"5.83","percent_visits_rsv":"0.29","week_end":"2022-12-10"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.57","percent_visits_covid":"2.17","percent_visits_influenza":"5.21","percent_visits_rsv":"0.25","week_end":"2022-12-17"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.4","percent_visits_covid":"3.95","percent_visits_influenza":"4.45","percent_visits_rsv":"0.07","week_end":"2022-12-24"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.7","percent_visits_covid":"3.94","percent_visits_influenza":"3.94","percent_visits_rsv":"0.06","week_end":"2022-12-31"}
-,{"county":"Crawford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.45","percent_visits_covid":"2.95","percent_visits_influenza":"2.37","percent_visits_rsv":"0.19","week_end":"2023-01-07"}
-,{"county":"Crawford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.21","percent_visits_covid":"1.86","percent_visits_influenza":"1.43","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Crawford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.6","percent_visits_covid":"1.13","percent_visits_influenza":"1.34","percent_visits_rsv":"0.2","week_end":"2023-01-21"}
-,{"county":"Crawford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.71","percent_visits_covid":"1.29","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.41","percent_visits_covid":"0.62","percent_visits_influenza":"0.78","percent_visits_rsv":"0.08","week_end":"2023-02-04"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.75","percent_visits_covid":"0.34","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.32","percent_visits_covid":"0.76","percent_visits_influenza":"0.48","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.61","percent_visits_covid":"1.03","percent_visits_influenza":"0.45","percent_visits_rsv":"0.13","week_end":"2023-02-25"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.42","percent_visits_covid":"0.97","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.12","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.78","percent_visits_covid":"0.59","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.21","percent_visits_covid":"1.66","percent_visits_influenza":"0.62","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.36","percent_visits_covid":"1.09","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.98","percent_visits_covid":"0.52","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.69","percent_visits_covid":"0.38","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.26","percent_visits_covid":"1.0","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.24","percent_visits_covid":"1.11","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.76","percent_visits_covid":"0.53","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.79","percent_visits_covid":"0.6","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.8","percent_visits_covid":"0.61","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.43","percent_visits_covid":"0.3","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.37","percent_visits_covid":"0.3","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.6","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.92","percent_visits_covid":"0.73","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.82","percent_visits_covid":"0.63","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.61","percent_visits_covid":"0.49","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.24","percent_visits_covid":"0.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.52","percent_visits_covid":"0.45","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.84","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.49","percent_visits_covid":"1.31","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.05","percent_visits_covid":"0.99","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.67","percent_visits_covid":"1.43","percent_visits_influenza":"0.24","percent_visits_rsv":"0.06","week_end":"2023-08-26"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.53","percent_visits_covid":"2.41","percent_visits_influenza":"0.18","percent_visits_rsv":"0.06","week_end":"2023-09-02"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.25","percent_visits_covid":"2.25","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.58","percent_visits_covid":"2.54","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Crawford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.13","percent_visits_covid":"2.01","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-09-23"}
-,{"county":"Crawford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.86","percent_visits_covid":"1.63","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-09-30"}
-,{"county":"Crawford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.68","percent_visits_covid":"1.56","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-10-07"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.54","percent_visits_covid":"1.39","percent_visits_influenza":"0.11","percent_visits_rsv":"0.04","week_end":"2023-10-14"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.9","percent_visits_covid":"1.52","percent_visits_influenza":"0.27","percent_visits_rsv":"0.16","week_end":"2023-10-21"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.78","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.17","percent_visits_influenza":"0.17","percent_visits_rsv":"0.25","week_end":"2023-11-04"}
-,{"county":"Crawford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.18","percent_visits_covid":"1.72","percent_visits_influenza":"0.27","percent_visits_rsv":"0.19","week_end":"2023-11-11"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.41","percent_visits_covid":"1.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.42","week_end":"2023-11-18"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.4","percent_visits_covid":"2.09","percent_visits_influenza":"0.53","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Crawford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.73","percent_visits_covid":"1.85","percent_visits_influenza":"0.64","percent_visits_rsv":"1.28","week_end":"2023-12-02"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.52","percent_visits_covid":"1.47","percent_visits_influenza":"0.63","percent_visits_rsv":"0.63","week_end":"2022-10-01"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.78","percent_visits_covid":"1.32","percent_visits_influenza":"2.08","percent_visits_rsv":"0.38","week_end":"2022-10-08"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.18","percent_visits_covid":"1.19","percent_visits_influenza":"1.79","percent_visits_rsv":"0.4","week_end":"2022-10-15"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.85","percent_visits_covid":"1.03","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2022-10-22"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.7","percent_visits_covid":"0.83","percent_visits_influenza":"1.45","percent_visits_rsv":"0.41","week_end":"2022-10-29"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.12","percent_visits_covid":"1.31","percent_visits_influenza":"2.43","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"7.78","percent_visits_covid":"1.32","percent_visits_influenza":"6.46","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.75","percent_visits_covid":"0.7","percent_visits_influenza":"4.05","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"10.32","percent_visits_covid":"1.78","percent_visits_influenza":"8.54","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"9.44","percent_visits_covid":"2.19","percent_visits_influenza":"6.91","percent_visits_rsv":"0.34","week_end":"2022-12-03"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"6.02","percent_visits_covid":"1.59","percent_visits_influenza":"4.25","percent_visits_rsv":"0.18","week_end":"2022-12-10"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.53","percent_visits_covid":"1.24","percent_visits_influenza":"2.28","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.7","percent_visits_covid":"1.92","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.83","percent_visits_covid":"3.09","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.93","percent_visits_covid":"3.61","percent_visits_influenza":"1.33","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.84","percent_visits_covid":"1.64","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.88","percent_visits_covid":"1.46","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.89","percent_visits_covid":"1.68","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.51","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.68","percent_visits_covid":"1.47","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.82","percent_visits_covid":"0.82","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.69","percent_visits_covid":"1.92","percent_visits_influenza":"0.38","percent_visits_rsv":"0.38","week_end":"2023-02-25"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.58","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.8","percent_visits_covid":"0.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.7","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.12","percent_visits_covid":"1.12","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.02","percent_visits_covid":"1.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.93","percent_visits_covid":"0.93","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.44","percent_visits_covid":"0.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.38","percent_visits_covid":"0.19","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.38","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.61","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.2","week_end":"2023-06-10"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.2","percent_visits_covid":"0.0","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.18","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.18","week_end":"2023-07-01"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.19","percent_visits_covid":"0.0","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.39","percent_visits_covid":"0.19","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.61","percent_visits_covid":"1.07","percent_visits_influenza":"0.36","percent_visits_rsv":"0.18","week_end":"2023-07-22"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.5","percent_visits_covid":"1.12","percent_visits_influenza":"0.19","percent_visits_rsv":"0.19","week_end":"2023-07-29"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.31","percent_visits_covid":"3.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.87","percent_visits_covid":"1.87","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Crittenden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.71","percent_visits_covid":"2.71","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.5","percent_visits_covid":"2.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.13","percent_visits_covid":"4.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.63","percent_visits_covid":"2.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.41","percent_visits_covid":"3.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.97","percent_visits_covid":"1.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.4","percent_visits_covid":"2.0","percent_visits_influenza":"0.2","percent_visits_rsv":"0.2","week_end":"2023-10-07"}
-,{"county":"Crittenden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.89","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2023-10-14"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.49","percent_visits_covid":"2.08","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.8","percent_visits_covid":"1.49","percent_visits_influenza":"0.56","percent_visits_rsv":"0.75","week_end":"2023-10-28"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.23","percent_visits_covid":"1.41","percent_visits_influenza":"0.4","percent_visits_rsv":"1.41","week_end":"2023-11-04"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.79","percent_visits_covid":"2.35","percent_visits_influenza":"0.9","percent_visits_rsv":"0.54","week_end":"2023-11-11"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.4","percent_visits_covid":"0.76","percent_visits_influenza":"2.29","percent_visits_rsv":"1.34","week_end":"2023-11-18"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"7.44","percent_visits_covid":"1.53","percent_visits_influenza":"3.44","percent_visits_rsv":"2.48","week_end":"2023-11-25"}
-,{"county":"Crittenden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"5.65","percent_visits_covid":"1.95","percent_visits_influenza":"1.95","percent_visits_rsv":"1.75","week_end":"2023-12-02"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.52","percent_visits_covid":"1.47","percent_visits_influenza":"0.63","percent_visits_rsv":"0.63","week_end":"2022-10-01"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.78","percent_visits_covid":"1.32","percent_visits_influenza":"2.08","percent_visits_rsv":"0.38","week_end":"2022-10-08"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.18","percent_visits_covid":"1.19","percent_visits_influenza":"1.79","percent_visits_rsv":"0.4","week_end":"2022-10-15"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.85","percent_visits_covid":"1.03","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2022-10-22"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.7","percent_visits_covid":"0.83","percent_visits_influenza":"1.45","percent_visits_rsv":"0.41","week_end":"2022-10-29"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.12","percent_visits_covid":"1.31","percent_visits_influenza":"2.43","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"7.78","percent_visits_covid":"1.32","percent_visits_influenza":"6.46","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.75","percent_visits_covid":"0.7","percent_visits_influenza":"4.05","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"10.32","percent_visits_covid":"1.78","percent_visits_influenza":"8.54","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"9.44","percent_visits_covid":"2.19","percent_visits_influenza":"6.91","percent_visits_rsv":"0.34","week_end":"2022-12-03"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"6.02","percent_visits_covid":"1.59","percent_visits_influenza":"4.25","percent_visits_rsv":"0.18","week_end":"2022-12-10"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.53","percent_visits_covid":"1.24","percent_visits_influenza":"2.28","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.7","percent_visits_covid":"1.92","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.83","percent_visits_covid":"3.09","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.93","percent_visits_covid":"3.61","percent_visits_influenza":"1.33","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.84","percent_visits_covid":"1.64","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.88","percent_visits_covid":"1.46","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.89","percent_visits_covid":"1.68","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.51","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.68","percent_visits_covid":"1.47","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.82","percent_visits_covid":"0.82","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.69","percent_visits_covid":"1.92","percent_visits_influenza":"0.38","percent_visits_rsv":"0.38","week_end":"2023-02-25"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.58","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.8","percent_visits_covid":"0.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.7","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.12","percent_visits_covid":"1.12","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.02","percent_visits_covid":"1.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.93","percent_visits_covid":"0.93","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.44","percent_visits_covid":"0.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.38","percent_visits_covid":"0.19","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.38","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.61","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.2","week_end":"2023-06-10"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.2","percent_visits_covid":"0.0","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.18","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.18","week_end":"2023-07-01"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.19","percent_visits_covid":"0.0","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.39","percent_visits_covid":"0.19","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.61","percent_visits_covid":"1.07","percent_visits_influenza":"0.36","percent_visits_rsv":"0.18","week_end":"2023-07-22"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.5","percent_visits_covid":"1.12","percent_visits_influenza":"0.19","percent_visits_rsv":"0.19","week_end":"2023-07-29"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.31","percent_visits_covid":"3.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.87","percent_visits_covid":"1.87","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Cross","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.71","percent_visits_covid":"2.71","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.5","percent_visits_covid":"2.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.13","percent_visits_covid":"4.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.63","percent_visits_covid":"2.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.41","percent_visits_covid":"3.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.97","percent_visits_covid":"1.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.4","percent_visits_covid":"2.0","percent_visits_influenza":"0.2","percent_visits_rsv":"0.2","week_end":"2023-10-07"}
-,{"county":"Cross","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.89","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2023-10-14"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.49","percent_visits_covid":"2.08","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.8","percent_visits_covid":"1.49","percent_visits_influenza":"0.56","percent_visits_rsv":"0.75","week_end":"2023-10-28"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.23","percent_visits_covid":"1.41","percent_visits_influenza":"0.4","percent_visits_rsv":"1.41","week_end":"2023-11-04"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.79","percent_visits_covid":"2.35","percent_visits_influenza":"0.9","percent_visits_rsv":"0.54","week_end":"2023-11-11"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.4","percent_visits_covid":"0.76","percent_visits_influenza":"2.29","percent_visits_rsv":"1.34","week_end":"2023-11-18"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"7.44","percent_visits_covid":"1.53","percent_visits_influenza":"3.44","percent_visits_rsv":"2.48","week_end":"2023-11-25"}
-,{"county":"Cross","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"5.65","percent_visits_covid":"1.95","percent_visits_influenza":"1.95","percent_visits_rsv":"1.75","week_end":"2023-12-02"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.89","percent_visits_covid":"2.72","percent_visits_influenza":"0.0","percent_visits_rsv":"1.17","week_end":"2022-10-01"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.96","percent_visits_covid":"1.57","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.57","percent_visits_covid":"1.18","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.69","percent_visits_covid":"0.84","percent_visits_influenza":"0.42","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.09","percent_visits_covid":"0.37","percent_visits_influenza":"1.12","percent_visits_rsv":"2.6","week_end":"2022-10-29"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"6.59","percent_visits_covid":"0.37","percent_visits_influenza":"3.66","percent_visits_rsv":"2.56","week_end":"2022-11-05"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"10.84","percent_visits_covid":"0.8","percent_visits_influenza":"5.22","percent_visits_rsv":"4.82","week_end":"2022-11-12"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"13.67","percent_visits_covid":"2.16","percent_visits_influenza":"10.43","percent_visits_rsv":"1.8","week_end":"2022-11-19"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"12.08","percent_visits_covid":"1.69","percent_visits_influenza":"10.11","percent_visits_rsv":"0.84","week_end":"2022-11-26"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"11.69","percent_visits_covid":"1.54","percent_visits_influenza":"9.54","percent_visits_rsv":"0.92","week_end":"2022-12-03"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"8.51","percent_visits_covid":"1.77","percent_visits_influenza":"5.32","percent_visits_rsv":"1.42","week_end":"2022-12-10"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"6.43","percent_visits_covid":"1.07","percent_visits_influenza":"5.36","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"7.56","percent_visits_covid":"3.36","percent_visits_influenza":"4.2","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"5.84","percent_visits_covid":"3.44","percent_visits_influenza":"2.41","percent_visits_rsv":"0.69","week_end":"2022-12-31"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"6.1","percent_visits_covid":"4.47","percent_visits_influenza":"1.22","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.28","percent_visits_covid":"1.95","percent_visits_influenza":"1.95","percent_visits_rsv":"0.39","week_end":"2023-01-14"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.08","percent_visits_covid":"2.69","percent_visits_influenza":"0.77","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.77","percent_visits_covid":"1.58","percent_visits_influenza":"1.58","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.1","percent_visits_covid":"2.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.44","week_end":"2023-02-04"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.27","percent_visits_covid":"1.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.22","percent_visits_covid":"0.74","percent_visits_influenza":"0.74","percent_visits_rsv":"0.74","week_end":"2023-02-18"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.14","percent_visits_covid":"1.78","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.75","percent_visits_covid":"0.37","percent_visits_influenza":"0.37","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.5","percent_visits_covid":"0.38","percent_visits_influenza":"1.13","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.48","percent_visits_covid":"0.37","percent_visits_influenza":"0.74","percent_visits_rsv":"0.37","week_end":"2023-03-18"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.82","percent_visits_covid":"0.73","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.07","percent_visits_covid":"1.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.26","percent_visits_covid":"1.13","percent_visits_influenza":"0.75","percent_visits_rsv":"0.38","week_end":"2023-04-08"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.51","percent_visits_covid":"3.01","percent_visits_influenza":"1.13","percent_visits_rsv":"0.38","week_end":"2023-04-15"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.74","percent_visits_covid":"0.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.27","percent_visits_covid":"1.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.82","percent_visits_covid":"2.67","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.44","percent_visits_covid":"1.08","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.64","percent_visits_covid":"3.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.11","percent_visits_covid":"2.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.4","percent_visits_covid":"1.89","percent_visits_influenza":"1.51","percent_visits_rsv":"0.38","week_end":"2023-06-10"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.53","percent_visits_covid":"0.76","percent_visits_influenza":"0.76","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.56","percent_visits_covid":"1.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.44","percent_visits_covid":"1.08","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.97","percent_visits_covid":"2.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.22","percent_visits_covid":"1.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.26","percent_visits_covid":"1.88","percent_visits_influenza":"0.75","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.75","percent_visits_covid":"2.41","percent_visits_influenza":"0.34","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.14","percent_visits_covid":"1.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.95","percent_visits_covid":"1.56","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.63","percent_visits_covid":"4.27","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.74","percent_visits_covid":"4.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.63","percent_visits_covid":"3.86","percent_visits_influenza":"0.77","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.72","percent_visits_covid":"3.35","percent_visits_influenza":"0.37","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"5.7","percent_visits_covid":"5.32","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.4","percent_visits_covid":"0.0","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Dallas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.9","percent_visits_covid":"0.0","percent_visits_influenza":"0.9","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Dallas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.33","percent_visits_covid":"1.17","percent_visits_influenza":"1.17","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.43","percent_visits_covid":"0.0","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.65","percent_visits_covid":"0.83","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.02","percent_visits_covid":"2.41","percent_visits_influenza":"1.61","percent_visits_rsv":"0.4","week_end":"2023-11-18"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"6.25","percent_visits_covid":"3.57","percent_visits_influenza":"1.34","percent_visits_rsv":"1.34","week_end":"2023-11-25"}
-,{"county":"Dallas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"7.97","percent_visits_covid":"3.59","percent_visits_influenza":"1.2","percent_visits_rsv":"3.19","week_end":"2023-12-02"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.06","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"1.48","week_end":"2022-10-01"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.21","percent_visits_covid":"1.4","percent_visits_influenza":"1.75","percent_visits_rsv":"1.4","week_end":"2022-10-08"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.68","percent_visits_covid":"0.32","percent_visits_influenza":"4.42","percent_visits_rsv":"0.95","week_end":"2022-10-15"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.7","percent_visits_covid":"0.95","percent_visits_influenza":"3.48","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.29","percent_visits_covid":"0.54","percent_visits_influenza":"10.22","percent_visits_rsv":"0.54","week_end":"2022-10-29"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.2","percent_visits_covid":"0.21","percent_visits_influenza":"5.79","percent_visits_rsv":"0.21","week_end":"2022-11-05"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.7","percent_visits_covid":"1.4","percent_visits_influenza":"10.64","percent_visits_rsv":"0.47","week_end":"2022-11-12"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.67","percent_visits_covid":"0.67","percent_visits_influenza":"10.0","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"14.05","percent_visits_covid":"1.63","percent_visits_influenza":"12.73","percent_visits_rsv":"0.51","week_end":"2022-11-26"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.71","percent_visits_covid":"2.54","percent_visits_influenza":"10.54","percent_visits_rsv":"0.29","week_end":"2022-12-03"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.41","percent_visits_covid":"2.51","percent_visits_influenza":"8.68","percent_visits_rsv":"0.19","week_end":"2022-12-10"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.87","percent_visits_covid":"1.61","percent_visits_influenza":"5.26","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"9.45","percent_visits_covid":"3.36","percent_visits_influenza":"6.41","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.06","percent_visits_covid":"4.36","percent_visits_influenza":"6.64","percent_visits_rsv":"0.19","week_end":"2022-12-31"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.28","percent_visits_covid":"3.51","percent_visits_influenza":"3.51","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.42","percent_visits_covid":"3.11","percent_visits_influenza":"3.91","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.83","percent_visits_covid":"2.26","percent_visits_influenza":"3.29","percent_visits_rsv":"0.21","week_end":"2023-01-21"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.26","percent_visits_covid":"2.37","percent_visits_influenza":"4.21","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.65","percent_visits_covid":"1.52","percent_visits_influenza":"4.34","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.32","percent_visits_covid":"1.6","percent_visits_influenza":"3.91","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.39","percent_visits_covid":"1.6","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2023-02-18"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.54","percent_visits_covid":"2.13","percent_visits_influenza":"3.94","percent_visits_rsv":"0.21","week_end":"2023-02-25"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.04","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.88","percent_visits_covid":"1.22","percent_visits_influenza":"3.76","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.11","percent_visits_covid":"1.41","percent_visits_influenza":"3.7","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.69","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.81","percent_visits_covid":"0.5","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.28","percent_visits_covid":"0.65","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.15","percent_visits_covid":"0.63","percent_visits_influenza":"2.62","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.81","percent_visits_covid":"0.32","percent_visits_influenza":"1.6","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.08","percent_visits_covid":"0.73","percent_visits_influenza":"1.56","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.23","percent_visits_covid":"0.85","percent_visits_influenza":"1.48","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.18","percent_visits_covid":"0.5","percent_visits_influenza":"1.59","percent_visits_rsv":"0.1","week_end":"2023-05-13"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.37","percent_visits_covid":"1.09","percent_visits_influenza":"3.38","percent_visits_rsv":"0.4","week_end":"2023-05-20"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.77","percent_visits_covid":"0.69","percent_visits_influenza":"1.08","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.46","percent_visits_covid":"0.49","percent_visits_influenza":"0.97","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.92","percent_visits_covid":"1.01","percent_visits_influenza":"1.01","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.43","percent_visits_covid":"0.1","percent_visits_influenza":"1.12","percent_visits_rsv":"0.31","week_end":"2023-06-17"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"0.62","percent_visits_influenza":"1.03","percent_visits_rsv":"0.1","week_end":"2023-06-24"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.48","percent_visits_covid":"0.42","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-07-01"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.99","percent_visits_covid":"0.63","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.8","percent_visits_rsv":"0.2","week_end":"2023-07-15"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.39","percent_visits_covid":"0.89","percent_visits_influenza":"1.49","percent_visits_rsv":"0.2","week_end":"2023-07-22"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.95","percent_visits_covid":"1.3","percent_visits_influenza":"0.76","percent_visits_rsv":"0.11","week_end":"2023-07-29"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.36","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"0.1","week_end":"2023-08-05"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"1.37","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.4","percent_visits_covid":"2.06","percent_visits_influenza":"1.34","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Desha","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.88","percent_visits_covid":"3.66","percent_visits_influenza":"2.31","percent_visits_rsv":"0.29","week_end":"2023-08-26"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.38","percent_visits_covid":"5.45","percent_visits_influenza":"1.13","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.98","percent_visits_influenza":"1.72","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.1","percent_visits_covid":"1.9","percent_visits_influenza":"1.4","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.1","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2023-09-23"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.05","percent_visits_covid":"1.81","percent_visits_influenza":"0.86","percent_visits_rsv":"0.48","week_end":"2023-09-30"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.78","percent_visits_covid":"1.28","percent_visits_influenza":"1.39","percent_visits_rsv":"0.43","week_end":"2023-10-07"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.56","percent_visits_covid":"1.82","percent_visits_influenza":"2.63","percent_visits_rsv":"0.3","week_end":"2023-10-14"}
-,{"county":"Desha","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.76","percent_visits_covid":"0.97","percent_visits_influenza":"2.36","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.12","percent_visits_covid":"0.77","percent_visits_influenza":"2.49","percent_visits_rsv":"1.15","week_end":"2023-10-28"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.95","percent_visits_covid":"0.44","percent_visits_influenza":"2.63","percent_visits_rsv":"1.43","week_end":"2023-11-04"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.58","percent_visits_covid":"1.06","percent_visits_influenza":"1.74","percent_visits_rsv":"0.87","week_end":"2023-11-11"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.59","percent_visits_covid":"0.82","percent_visits_influenza":"2.16","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.67","percent_visits_covid":"2.0","percent_visits_influenza":"2.73","percent_visits_rsv":"1.68","week_end":"2023-11-25"}
-,{"county":"Desha","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.04","percent_visits_covid":"0.72","percent_visits_influenza":"2.36","percent_visits_rsv":"2.36","week_end":"2023-12-02"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.06","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"1.48","week_end":"2022-10-01"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.21","percent_visits_covid":"1.4","percent_visits_influenza":"1.75","percent_visits_rsv":"1.4","week_end":"2022-10-08"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.68","percent_visits_covid":"0.32","percent_visits_influenza":"4.42","percent_visits_rsv":"0.95","week_end":"2022-10-15"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.7","percent_visits_covid":"0.95","percent_visits_influenza":"3.48","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.29","percent_visits_covid":"0.54","percent_visits_influenza":"10.22","percent_visits_rsv":"0.54","week_end":"2022-10-29"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.2","percent_visits_covid":"0.21","percent_visits_influenza":"5.79","percent_visits_rsv":"0.21","week_end":"2022-11-05"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.7","percent_visits_covid":"1.4","percent_visits_influenza":"10.64","percent_visits_rsv":"0.47","week_end":"2022-11-12"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.67","percent_visits_covid":"0.67","percent_visits_influenza":"10.0","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"14.05","percent_visits_covid":"1.63","percent_visits_influenza":"12.73","percent_visits_rsv":"0.51","week_end":"2022-11-26"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.71","percent_visits_covid":"2.54","percent_visits_influenza":"10.54","percent_visits_rsv":"0.29","week_end":"2022-12-03"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.41","percent_visits_covid":"2.51","percent_visits_influenza":"8.68","percent_visits_rsv":"0.19","week_end":"2022-12-10"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.87","percent_visits_covid":"1.61","percent_visits_influenza":"5.26","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"9.45","percent_visits_covid":"3.36","percent_visits_influenza":"6.41","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.06","percent_visits_covid":"4.36","percent_visits_influenza":"6.64","percent_visits_rsv":"0.19","week_end":"2022-12-31"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.28","percent_visits_covid":"3.51","percent_visits_influenza":"3.51","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.42","percent_visits_covid":"3.11","percent_visits_influenza":"3.91","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.83","percent_visits_covid":"2.26","percent_visits_influenza":"3.29","percent_visits_rsv":"0.21","week_end":"2023-01-21"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.26","percent_visits_covid":"2.37","percent_visits_influenza":"4.21","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.65","percent_visits_covid":"1.52","percent_visits_influenza":"4.34","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.32","percent_visits_covid":"1.6","percent_visits_influenza":"3.91","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.39","percent_visits_covid":"1.6","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2023-02-18"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.54","percent_visits_covid":"2.13","percent_visits_influenza":"3.94","percent_visits_rsv":"0.21","week_end":"2023-02-25"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.04","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.88","percent_visits_covid":"1.22","percent_visits_influenza":"3.76","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.11","percent_visits_covid":"1.41","percent_visits_influenza":"3.7","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.69","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.81","percent_visits_covid":"0.5","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.28","percent_visits_covid":"0.65","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.15","percent_visits_covid":"0.63","percent_visits_influenza":"2.62","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.81","percent_visits_covid":"0.32","percent_visits_influenza":"1.6","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.08","percent_visits_covid":"0.73","percent_visits_influenza":"1.56","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.23","percent_visits_covid":"0.85","percent_visits_influenza":"1.48","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.18","percent_visits_covid":"0.5","percent_visits_influenza":"1.59","percent_visits_rsv":"0.1","week_end":"2023-05-13"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.37","percent_visits_covid":"1.09","percent_visits_influenza":"3.38","percent_visits_rsv":"0.4","week_end":"2023-05-20"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.77","percent_visits_covid":"0.69","percent_visits_influenza":"1.08","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.46","percent_visits_covid":"0.49","percent_visits_influenza":"0.97","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.92","percent_visits_covid":"1.01","percent_visits_influenza":"1.01","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.43","percent_visits_covid":"0.1","percent_visits_influenza":"1.12","percent_visits_rsv":"0.31","week_end":"2023-06-17"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"0.62","percent_visits_influenza":"1.03","percent_visits_rsv":"0.1","week_end":"2023-06-24"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.48","percent_visits_covid":"0.42","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-07-01"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.99","percent_visits_covid":"0.63","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.8","percent_visits_rsv":"0.2","week_end":"2023-07-15"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.39","percent_visits_covid":"0.89","percent_visits_influenza":"1.49","percent_visits_rsv":"0.2","week_end":"2023-07-22"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.95","percent_visits_covid":"1.3","percent_visits_influenza":"0.76","percent_visits_rsv":"0.11","week_end":"2023-07-29"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.36","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"0.1","week_end":"2023-08-05"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"1.37","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.4","percent_visits_covid":"2.06","percent_visits_influenza":"1.34","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Drew","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.88","percent_visits_covid":"3.66","percent_visits_influenza":"2.31","percent_visits_rsv":"0.29","week_end":"2023-08-26"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.38","percent_visits_covid":"5.45","percent_visits_influenza":"1.13","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.98","percent_visits_influenza":"1.72","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.1","percent_visits_covid":"1.9","percent_visits_influenza":"1.4","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.1","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2023-09-23"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.05","percent_visits_covid":"1.81","percent_visits_influenza":"0.86","percent_visits_rsv":"0.48","week_end":"2023-09-30"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.78","percent_visits_covid":"1.28","percent_visits_influenza":"1.39","percent_visits_rsv":"0.43","week_end":"2023-10-07"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.56","percent_visits_covid":"1.82","percent_visits_influenza":"2.63","percent_visits_rsv":"0.3","week_end":"2023-10-14"}
-,{"county":"Drew","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.76","percent_visits_covid":"0.97","percent_visits_influenza":"2.36","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.12","percent_visits_covid":"0.77","percent_visits_influenza":"2.49","percent_visits_rsv":"1.15","week_end":"2023-10-28"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.95","percent_visits_covid":"0.44","percent_visits_influenza":"2.63","percent_visits_rsv":"1.43","week_end":"2023-11-04"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.58","percent_visits_covid":"1.06","percent_visits_influenza":"1.74","percent_visits_rsv":"0.87","week_end":"2023-11-11"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.59","percent_visits_covid":"0.82","percent_visits_influenza":"2.16","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.67","percent_visits_covid":"2.0","percent_visits_influenza":"2.73","percent_visits_rsv":"1.68","week_end":"2023-11-25"}
-,{"county":"Drew","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.04","percent_visits_covid":"0.72","percent_visits_influenza":"2.36","percent_visits_rsv":"2.36","week_end":"2023-12-02"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.23","percent_visits_covid":"0.98","percent_visits_influenza":"0.26","percent_visits_rsv":"0.98","week_end":"2022-10-15"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Faulkner","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Faulkner","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Faulkner","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.69","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2022-10-08"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.06","percent_visits_covid":"0.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.75","week_end":"2022-10-22"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.83","percent_visits_covid":"0.4","percent_visits_influenza":"2.45","percent_visits_rsv":"2.05","week_end":"2022-10-29"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.84","percent_visits_covid":"0.95","percent_visits_influenza":"2.36","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.67","percent_visits_covid":"1.01","percent_visits_influenza":"3.78","percent_visits_rsv":"0.95","week_end":"2022-11-12"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.31","percent_visits_covid":"0.34","percent_visits_influenza":"4.49","percent_visits_rsv":"0.54","week_end":"2022-11-19"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"13.18","percent_visits_covid":"1.79","percent_visits_influenza":"10.84","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.0","percent_visits_covid":"1.05","percent_visits_influenza":"6.6","percent_visits_rsv":"0.41","week_end":"2022-12-03"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.77","percent_visits_covid":"1.88","percent_visits_influenza":"5.83","percent_visits_rsv":"0.29","week_end":"2022-12-10"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.57","percent_visits_covid":"2.17","percent_visits_influenza":"5.21","percent_visits_rsv":"0.25","week_end":"2022-12-17"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.4","percent_visits_covid":"3.95","percent_visits_influenza":"4.45","percent_visits_rsv":"0.07","week_end":"2022-12-24"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.7","percent_visits_covid":"3.94","percent_visits_influenza":"3.94","percent_visits_rsv":"0.06","week_end":"2022-12-31"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.45","percent_visits_covid":"2.95","percent_visits_influenza":"2.37","percent_visits_rsv":"0.19","week_end":"2023-01-07"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.21","percent_visits_covid":"1.86","percent_visits_influenza":"1.43","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.6","percent_visits_covid":"1.13","percent_visits_influenza":"1.34","percent_visits_rsv":"0.2","week_end":"2023-01-21"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.71","percent_visits_covid":"1.29","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.41","percent_visits_covid":"0.62","percent_visits_influenza":"0.78","percent_visits_rsv":"0.08","week_end":"2023-02-04"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.75","percent_visits_covid":"0.34","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.32","percent_visits_covid":"0.76","percent_visits_influenza":"0.48","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.61","percent_visits_covid":"1.03","percent_visits_influenza":"0.45","percent_visits_rsv":"0.13","week_end":"2023-02-25"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.42","percent_visits_covid":"0.97","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.12","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.78","percent_visits_covid":"0.59","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.21","percent_visits_covid":"1.66","percent_visits_influenza":"0.62","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.36","percent_visits_covid":"1.09","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.98","percent_visits_covid":"0.52","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.69","percent_visits_covid":"0.38","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.26","percent_visits_covid":"1.0","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.24","percent_visits_covid":"1.11","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.76","percent_visits_covid":"0.53","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.79","percent_visits_covid":"0.6","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.8","percent_visits_covid":"0.61","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.43","percent_visits_covid":"0.3","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.37","percent_visits_covid":"0.3","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.6","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.92","percent_visits_covid":"0.73","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.82","percent_visits_covid":"0.63","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.61","percent_visits_covid":"0.49","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.24","percent_visits_covid":"0.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.52","percent_visits_covid":"0.45","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.84","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.49","percent_visits_covid":"1.31","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.05","percent_visits_covid":"0.99","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.67","percent_visits_covid":"1.43","percent_visits_influenza":"0.24","percent_visits_rsv":"0.06","week_end":"2023-08-26"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.53","percent_visits_covid":"2.41","percent_visits_influenza":"0.18","percent_visits_rsv":"0.06","week_end":"2023-09-02"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.25","percent_visits_covid":"2.25","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.58","percent_visits_covid":"2.54","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.13","percent_visits_covid":"2.01","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-09-23"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.86","percent_visits_covid":"1.63","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-09-30"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.68","percent_visits_covid":"1.56","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-10-07"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.54","percent_visits_covid":"1.39","percent_visits_influenza":"0.11","percent_visits_rsv":"0.04","week_end":"2023-10-14"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.9","percent_visits_covid":"1.52","percent_visits_influenza":"0.27","percent_visits_rsv":"0.16","week_end":"2023-10-21"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.78","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.17","percent_visits_influenza":"0.17","percent_visits_rsv":"0.25","week_end":"2023-11-04"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.18","percent_visits_covid":"1.72","percent_visits_influenza":"0.27","percent_visits_rsv":"0.19","week_end":"2023-11-11"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.41","percent_visits_covid":"1.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.42","week_end":"2023-11-18"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.4","percent_visits_covid":"2.09","percent_visits_influenza":"0.53","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.73","percent_visits_covid":"1.85","percent_visits_influenza":"0.64","percent_visits_rsv":"1.28","week_end":"2023-12-02"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.51","percent_visits_covid":"2.76","percent_visits_influenza":"0.0","percent_visits_rsv":"2.76","week_end":"2022-10-01"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.16","percent_visits_covid":"1.51","percent_visits_influenza":"0.13","percent_visits_rsv":"3.52","week_end":"2022-10-08"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.26","percent_visits_covid":"0.66","percent_visits_influenza":"0.27","percent_visits_rsv":"1.33","week_end":"2022-10-15"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.15","percent_visits_covid":"0.86","percent_visits_influenza":"0.72","percent_visits_rsv":"1.72","week_end":"2022-10-22"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.31","percent_visits_covid":"0.4","percent_visits_influenza":"1.32","percent_visits_rsv":"1.59","week_end":"2022-10-29"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.52","percent_visits_covid":"1.2","percent_visits_influenza":"2.26","percent_visits_rsv":"1.06","week_end":"2022-11-05"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.41","percent_visits_covid":"1.08","percent_visits_influenza":"4.19","percent_visits_rsv":"0.14","week_end":"2022-11-12"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"8.16","percent_visits_covid":"1.52","percent_visits_influenza":"6.22","percent_visits_rsv":"0.69","week_end":"2022-11-19"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"16.95","percent_visits_covid":"2.92","percent_visits_influenza":"13.58","percent_visits_rsv":"0.56","week_end":"2022-11-26"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"13.42","percent_visits_covid":"2.8","percent_visits_influenza":"10.18","percent_visits_rsv":"0.45","week_end":"2022-12-03"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"10.3","percent_visits_covid":"2.64","percent_visits_influenza":"7.53","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.67","percent_visits_covid":"2.91","percent_visits_influenza":"6.62","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.44","percent_visits_covid":"3.83","percent_visits_influenza":"5.46","percent_visits_rsv":"0.15","week_end":"2022-12-24"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.71","percent_visits_covid":"4.27","percent_visits_influenza":"2.07","percent_visits_rsv":"0.37","week_end":"2022-12-31"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.28","percent_visits_covid":"4.43","percent_visits_influenza":"1.48","percent_visits_rsv":"0.62","week_end":"2023-01-07"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.61","percent_visits_covid":"2.92","percent_visits_influenza":"0.56","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.57","percent_visits_covid":"1.66","percent_visits_influenza":"0.91","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.53","percent_visits_covid":"1.77","percent_visits_influenza":"1.77","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-02-04"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.78","percent_visits_covid":"1.1","percent_visits_influenza":"0.68","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"0.86","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"1.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.44","percent_visits_covid":"1.9","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-03-04"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.9","percent_visits_covid":"1.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.57","percent_visits_covid":"1.28","percent_visits_influenza":"0.14","percent_visits_rsv":"0.14","week_end":"2023-03-25"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.52","percent_visits_covid":"1.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.58","percent_visits_covid":"1.43","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.03","percent_visits_covid":"1.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.92","percent_visits_covid":"0.92","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.6","percent_visits_covid":"0.48","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.76","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.37","percent_visits_covid":"0.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.25","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.5","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-07-15"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.77","percent_visits_covid":"0.38","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.18","percent_visits_covid":"0.82","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.48","percent_visits_covid":"0.95","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.91","percent_visits_covid":"1.59","percent_visits_influenza":"0.21","percent_visits_rsv":"0.11","week_end":"2023-08-19"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.49","percent_visits_covid":"3.28","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-08-26"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.71","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.64","percent_visits_covid":"4.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.09","week_end":"2023-09-09"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.39","percent_visits_covid":"3.29","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-16"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.18","percent_visits_covid":"2.97","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-23"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.59","percent_visits_covid":"2.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.22","week_end":"2023-09-30"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.65","percent_visits_covid":"1.99","percent_visits_influenza":"0.11","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.93","percent_visits_covid":"1.5","percent_visits_influenza":"0.11","percent_visits_rsv":"0.32","week_end":"2023-10-14"}
-,{"county":"Fulton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.45","percent_visits_covid":"0.67","percent_visits_influenza":"0.11","percent_visits_rsv":"0.67","week_end":"2023-10-21"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.4","percent_visits_covid":"0.43","percent_visits_influenza":"0.11","percent_visits_rsv":"0.86","week_end":"2023-10-28"}
-,{"county":"Fulton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.92","percent_visits_covid":"0.84","percent_visits_influenza":"0.24","percent_visits_rsv":"0.84","week_end":"2023-11-04"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.83","percent_visits_covid":"1.59","percent_visits_influenza":"0.0","percent_visits_rsv":"1.25","week_end":"2023-11-11"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.84","percent_visits_covid":"0.8","percent_visits_influenza":"0.11","percent_visits_rsv":"2.05","week_end":"2023-11-18"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.65","percent_visits_covid":"1.7","percent_visits_influenza":"0.23","percent_visits_rsv":"2.72","week_end":"2023-11-25"}
-,{"county":"Fulton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.77","percent_visits_covid":"2.68","percent_visits_influenza":"0.23","percent_visits_rsv":"2.1","week_end":"2023-12-02"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.0","percent_visits_rsv":"0.33","week_end":"2022-10-08"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.17","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.23","week_end":"2022-10-15"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.41","percent_visits_covid":"0.64","percent_visits_influenza":"0.35","percent_visits_rsv":"0.41","week_end":"2022-10-22"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.25","percent_visits_covid":"0.73","percent_visits_influenza":"0.91","percent_visits_rsv":"0.61","week_end":"2022-10-29"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.72","percent_visits_covid":"0.68","percent_visits_influenza":"1.67","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.64","percent_visits_covid":"0.87","percent_visits_influenza":"3.48","percent_visits_rsv":"0.29","week_end":"2022-11-12"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"6.58","percent_visits_covid":"0.77","percent_visits_influenza":"5.65","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"10.75","percent_visits_covid":"1.29","percent_visits_influenza":"8.97","percent_visits_rsv":"0.55","week_end":"2022-11-26"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"7.59","percent_visits_covid":"1.44","percent_visits_influenza":"6.14","percent_visits_rsv":"0.1","week_end":"2022-12-03"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"5.71","percent_visits_covid":"1.31","percent_visits_influenza":"4.34","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.43","percent_visits_covid":"2.01","percent_visits_influenza":"2.24","percent_visits_rsv":"0.18","week_end":"2022-12-17"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.57","percent_visits_covid":"1.25","percent_visits_influenza":"1.32","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.91","percent_visits_covid":"2.94","percent_visits_influenza":"1.91","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"3.07","percent_visits_covid":"2.3","percent_visits_influenza":"0.77","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.65","percent_visits_covid":"1.52","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"0.96","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-01-28"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.25","percent_visits_covid":"0.84","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.23","percent_visits_covid":"1.04","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.09","percent_visits_covid":"0.9","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-18"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.63","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.59","percent_visits_covid":"0.53","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.73","percent_visits_covid":"0.61","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-03-18"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.03","percent_visits_covid":"0.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-03-25"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.44","percent_visits_covid":"1.14","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.99","percent_visits_covid":"0.93","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.86","percent_visits_covid":"0.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.42","percent_visits_covid":"0.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.65","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-05-06"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.5","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-05-20"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.07","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.38","percent_visits_covid":"0.31","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.46","percent_visits_covid":"0.4","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.31","percent_visits_covid":"1.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.95","percent_visits_covid":"0.95","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.85","percent_visits_covid":"1.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Garland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.48","percent_visits_covid":"2.48","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.81","percent_visits_covid":"2.76","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.7","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.1","percent_visits_covid":"1.05","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Garland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.11","percent_visits_covid":"1.11","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-10-14"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.93","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-10-21"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.87","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-10-28"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.7","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-11-04"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.38","percent_visits_covid":"1.43","percent_visits_influenza":"0.48","percent_visits_rsv":"0.48","week_end":"2023-11-11"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.33","percent_visits_covid":"0.78","percent_visits_influenza":"0.36","percent_visits_rsv":"1.19","week_end":"2023-11-18"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.1","percent_visits_covid":"1.84","percent_visits_influenza":"0.53","percent_visits_rsv":"1.9","week_end":"2023-11-25"}
-,{"county":"Garland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.95","percent_visits_covid":"0.88","percent_visits_influenza":"0.53","percent_visits_rsv":"1.53","week_end":"2023-12-02"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.07","percent_visits_covid":"3.94","percent_visits_influenza":"2.84","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Grant","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Grant","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Grant","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.01","percent_visits_covid":"1.42","percent_visits_influenza":"0.38","percent_visits_rsv":"1.34","week_end":"2022-10-01"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.3","percent_visits_covid":"1.3","percent_visits_influenza":"0.33","percent_visits_rsv":"1.67","week_end":"2022-10-08"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.59","percent_visits_covid":"1.49","percent_visits_influenza":"1.26","percent_visits_rsv":"2.0","week_end":"2022-10-15"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.94","percent_visits_covid":"1.56","percent_visits_influenza":"0.94","percent_visits_rsv":"1.44","week_end":"2022-10-22"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.81","percent_visits_covid":"1.03","percent_visits_influenza":"2.67","percent_visits_rsv":"1.22","week_end":"2022-10-29"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"6.71","percent_visits_covid":"1.26","percent_visits_influenza":"3.93","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.81","percent_visits_covid":"1.15","percent_visits_influenza":"6.22","percent_visits_rsv":"1.62","week_end":"2022-11-12"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.86","percent_visits_covid":"0.98","percent_visits_influenza":"7.08","percent_visits_rsv":"0.95","week_end":"2022-11-19"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"15.56","percent_visits_covid":"1.52","percent_visits_influenza":"13.26","percent_visits_rsv":"1.18","week_end":"2022-11-26"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"10.5","percent_visits_covid":"1.84","percent_visits_influenza":"8.06","percent_visits_rsv":"1.08","week_end":"2022-12-03"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.98","percent_visits_covid":"2.02","percent_visits_influenza":"6.51","percent_visits_rsv":"0.56","week_end":"2022-12-10"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.44","percent_visits_covid":"2.76","percent_visits_influenza":"4.49","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.77","percent_visits_covid":"4.9","percent_visits_influenza":"2.76","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.9","percent_visits_covid":"3.77","percent_visits_influenza":"2.01","percent_visits_rsv":"0.25","week_end":"2023-01-07"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.98","percent_visits_covid":"3.68","percent_visits_influenza":"0.94","percent_visits_rsv":"0.43","week_end":"2023-01-14"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.14","percent_visits_covid":"2.5","percent_visits_influenza":"0.52","percent_visits_rsv":"0.16","week_end":"2023-01-21"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.17","percent_visits_covid":"2.56","percent_visits_influenza":"0.45","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.95","percent_visits_covid":"2.56","percent_visits_influenza":"0.26","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.12","percent_visits_covid":"1.76","percent_visits_influenza":"0.32","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.36","percent_visits_covid":"2.08","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.98","percent_visits_covid":"1.52","percent_visits_influenza":"0.43","percent_visits_rsv":"0.04","week_end":"2023-02-25"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.79","percent_visits_covid":"1.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.91","percent_visits_influenza":"0.12","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.08","percent_visits_covid":"0.81","percent_visits_influenza":"0.15","percent_visits_rsv":"0.12","week_end":"2023-03-18"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.26","percent_visits_covid":"0.9","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-03-25"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.34","percent_visits_covid":"0.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.94","percent_visits_covid":"0.7","percent_visits_influenza":"0.16","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.18","percent_visits_covid":"0.87","percent_visits_influenza":"0.12","percent_visits_rsv":"0.2","week_end":"2023-04-15"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.79","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.74","percent_visits_covid":"1.58","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-04-29"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.82","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.2","percent_visits_covid":"0.84","percent_visits_influenza":"0.35","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.81","percent_visits_covid":"0.6","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.59","percent_visits_covid":"0.37","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-05-27"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.37","percent_visits_covid":"0.26","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.33","percent_visits_covid":"0.22","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.25","percent_visits_covid":"0.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.67","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.52","percent_visits_covid":"0.29","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.41","percent_visits_covid":"0.26","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.54","percent_visits_covid":"0.51","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.44","percent_visits_covid":"0.37","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.14","percent_visits_covid":"0.99","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.99","percent_visits_covid":"1.88","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.15","percent_visits_covid":"3.08","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.82","percent_visits_covid":"3.75","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.25","percent_visits_covid":"4.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.92","percent_visits_covid":"4.65","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-09-09"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.89","percent_visits_covid":"2.62","percent_visits_influenza":"0.2","percent_visits_rsv":"0.07","week_end":"2023-09-16"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.64","percent_visits_covid":"2.43","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-09-23"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.25","percent_visits_covid":"1.72","percent_visits_influenza":"0.49","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Greene","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.06","percent_visits_covid":"0.9","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.33","percent_visits_covid":"1.15","percent_visits_influenza":"2.11","percent_visits_rsv":"0.07","week_end":"2023-10-14"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.09","percent_visits_covid":"1.13","percent_visits_influenza":"2.78","percent_visits_rsv":"0.18","week_end":"2023-10-21"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.43","percent_visits_covid":"0.99","percent_visits_influenza":"2.05","percent_visits_rsv":"0.46","week_end":"2023-10-28"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.93","percent_visits_covid":"1.2","percent_visits_influenza":"2.14","percent_visits_rsv":"0.62","week_end":"2023-11-04"}
-,{"county":"Greene","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.37","percent_visits_covid":"1.67","percent_visits_influenza":"2.99","percent_visits_rsv":"0.92","week_end":"2023-11-11"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.54","percent_visits_covid":"1.72","percent_visits_influenza":"2.45","percent_visits_rsv":"1.47","week_end":"2023-11-18"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.42","percent_visits_covid":"1.2","percent_visits_influenza":"2.62","percent_visits_rsv":"1.76","week_end":"2023-11-25"}
-,{"county":"Greene","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.64","percent_visits_covid":"1.8","percent_visits_influenza":"1.45","percent_visits_rsv":"1.42","week_end":"2023-12-02"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.6","percent_visits_covid":"0.78","percent_visits_influenza":"0.26","percent_visits_rsv":"1.56","week_end":"2022-10-01"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"0.24","percent_visits_rsv":"1.95","week_end":"2022-10-08"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.66","percent_visits_covid":"1.65","percent_visits_influenza":"0.47","percent_visits_rsv":"3.54","week_end":"2022-10-15"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.28","percent_visits_covid":"1.01","percent_visits_influenza":"2.52","percent_visits_rsv":"0.76","week_end":"2022-10-22"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"8.43","percent_visits_covid":"1.45","percent_visits_influenza":"3.86","percent_visits_rsv":"4.34","week_end":"2022-10-29"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.29","percent_visits_covid":"1.33","percent_visits_influenza":"7.08","percent_visits_rsv":"0.88","week_end":"2022-11-05"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"15.5","percent_visits_covid":"0.83","percent_visits_influenza":"11.78","percent_visits_rsv":"3.51","week_end":"2022-11-12"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"21.99","percent_visits_covid":"0.83","percent_visits_influenza":"19.29","percent_visits_rsv":"1.87","week_end":"2022-11-19"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"26.37","percent_visits_covid":"1.13","percent_visits_influenza":"25.24","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"22.03","percent_visits_covid":"3.12","percent_visits_influenza":"18.91","percent_visits_rsv":"0.39","week_end":"2022-12-03"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"12.65","percent_visits_covid":"2.45","percent_visits_influenza":"10.2","percent_visits_rsv":"0.61","week_end":"2022-12-10"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.95","percent_visits_covid":"4.59","percent_visits_influenza":"5.61","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.51","percent_visits_covid":"2.61","percent_visits_influenza":"2.9","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.69","percent_visits_covid":"2.51","percent_visits_influenza":"2.96","percent_visits_rsv":"0.23","week_end":"2022-12-31"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.98","percent_visits_covid":"4.19","percent_visits_influenza":"2.79","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.91","percent_visits_covid":"1.45","percent_visits_influenza":"1.45","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.34","percent_visits_covid":"1.95","percent_visits_influenza":"1.11","percent_visits_rsv":"0.28","week_end":"2023-01-21"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.82","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.94","percent_visits_covid":"1.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.89","percent_visits_covid":"2.75","percent_visits_influenza":"2.14","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.44","percent_visits_covid":"4.17","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.39","percent_visits_covid":"2.82","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.76","percent_visits_covid":"3.49","percent_visits_influenza":"1.9","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.97","percent_visits_covid":"1.41","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.95","percent_visits_covid":"0.32","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.96","percent_visits_covid":"0.32","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.05","percent_visits_covid":"2.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.54","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.95","percent_visits_covid":"5.68","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.33","percent_visits_covid":"2.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.43","percent_visits_covid":"1.15","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.87","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.61","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.9","percent_visits_covid":"1.09","percent_visits_influenza":"0.54","percent_visits_rsv":"0.27","week_end":"2023-06-03"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.3","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.3","week_end":"2023-06-10"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.29","percent_visits_covid":"0.0","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.53","percent_visits_covid":"1.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.28","percent_visits_covid":"0.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.26","percent_visits_covid":"1.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.39","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.25","percent_visits_covid":"0.93","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.85","percent_visits_covid":"3.25","percent_visits_influenza":"0.59","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Hempstead","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.37","percent_visits_covid":"3.83","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-09-02"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.62","percent_visits_covid":"3.41","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.9","percent_visits_covid":"3.46","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.02","percent_visits_covid":"2.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Hempstead","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.17","percent_visits_covid":"1.9","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.99","percent_visits_covid":"1.99","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.77","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.38","percent_visits_covid":"1.79","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.63","percent_visits_covid":"0.82","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.45","percent_visits_covid":"1.72","percent_visits_influenza":"1.72","percent_visits_rsv":"0.34","week_end":"2023-11-04"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.24","percent_visits_covid":"2.39","percent_visits_influenza":"1.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.67","percent_visits_covid":"2.12","percent_visits_influenza":"2.73","percent_visits_rsv":"1.82","week_end":"2023-11-18"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.49","percent_visits_covid":"1.22","percent_visits_influenza":"2.44","percent_visits_rsv":"1.83","week_end":"2023-11-25"}
-,{"county":"Hempstead","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.99","percent_visits_covid":"1.23","percent_visits_influenza":"0.61","percent_visits_rsv":"2.15","week_end":"2023-12-02"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.0","percent_visits_rsv":"0.33","week_end":"2022-10-08"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.17","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.23","week_end":"2022-10-15"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.41","percent_visits_covid":"0.64","percent_visits_influenza":"0.35","percent_visits_rsv":"0.41","week_end":"2022-10-22"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.25","percent_visits_covid":"0.73","percent_visits_influenza":"0.91","percent_visits_rsv":"0.61","week_end":"2022-10-29"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.72","percent_visits_covid":"0.68","percent_visits_influenza":"1.67","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.64","percent_visits_covid":"0.87","percent_visits_influenza":"3.48","percent_visits_rsv":"0.29","week_end":"2022-11-12"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"6.58","percent_visits_covid":"0.77","percent_visits_influenza":"5.65","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"10.75","percent_visits_covid":"1.29","percent_visits_influenza":"8.97","percent_visits_rsv":"0.55","week_end":"2022-11-26"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"7.59","percent_visits_covid":"1.44","percent_visits_influenza":"6.14","percent_visits_rsv":"0.1","week_end":"2022-12-03"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"5.71","percent_visits_covid":"1.31","percent_visits_influenza":"4.34","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.43","percent_visits_covid":"2.01","percent_visits_influenza":"2.24","percent_visits_rsv":"0.18","week_end":"2022-12-17"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.57","percent_visits_covid":"1.25","percent_visits_influenza":"1.32","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.91","percent_visits_covid":"2.94","percent_visits_influenza":"1.91","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"3.07","percent_visits_covid":"2.3","percent_visits_influenza":"0.77","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.65","percent_visits_covid":"1.52","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"0.96","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-01-28"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.25","percent_visits_covid":"0.84","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.23","percent_visits_covid":"1.04","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.09","percent_visits_covid":"0.9","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-18"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.63","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.59","percent_visits_covid":"0.53","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.73","percent_visits_covid":"0.61","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-03-18"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.03","percent_visits_covid":"0.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-03-25"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.44","percent_visits_covid":"1.14","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.99","percent_visits_covid":"0.93","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.86","percent_visits_covid":"0.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.42","percent_visits_covid":"0.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.65","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-05-06"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.5","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-05-20"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.07","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.38","percent_visits_covid":"0.31","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.46","percent_visits_covid":"0.4","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.31","percent_visits_covid":"1.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.95","percent_visits_covid":"0.95","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.85","percent_visits_covid":"1.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Hot Spring","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.48","percent_visits_covid":"2.48","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.81","percent_visits_covid":"2.76","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.7","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.1","percent_visits_covid":"1.05","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Hot Spring","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.11","percent_visits_covid":"1.11","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-10-14"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.93","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-10-21"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.87","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-10-28"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.7","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-11-04"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.38","percent_visits_covid":"1.43","percent_visits_influenza":"0.48","percent_visits_rsv":"0.48","week_end":"2023-11-11"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.33","percent_visits_covid":"0.78","percent_visits_influenza":"0.36","percent_visits_rsv":"1.19","week_end":"2023-11-18"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.1","percent_visits_covid":"1.84","percent_visits_influenza":"0.53","percent_visits_rsv":"1.9","week_end":"2023-11-25"}
-,{"county":"Hot Spring","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.95","percent_visits_covid":"0.88","percent_visits_influenza":"0.53","percent_visits_rsv":"1.53","week_end":"2023-12-02"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.6","percent_visits_covid":"0.78","percent_visits_influenza":"0.26","percent_visits_rsv":"1.56","week_end":"2022-10-01"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"0.24","percent_visits_rsv":"1.95","week_end":"2022-10-08"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.66","percent_visits_covid":"1.65","percent_visits_influenza":"0.47","percent_visits_rsv":"3.54","week_end":"2022-10-15"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.28","percent_visits_covid":"1.01","percent_visits_influenza":"2.52","percent_visits_rsv":"0.76","week_end":"2022-10-22"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"8.43","percent_visits_covid":"1.45","percent_visits_influenza":"3.86","percent_visits_rsv":"4.34","week_end":"2022-10-29"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.29","percent_visits_covid":"1.33","percent_visits_influenza":"7.08","percent_visits_rsv":"0.88","week_end":"2022-11-05"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"15.5","percent_visits_covid":"0.83","percent_visits_influenza":"11.78","percent_visits_rsv":"3.51","week_end":"2022-11-12"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"21.99","percent_visits_covid":"0.83","percent_visits_influenza":"19.29","percent_visits_rsv":"1.87","week_end":"2022-11-19"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"26.37","percent_visits_covid":"1.13","percent_visits_influenza":"25.24","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"22.03","percent_visits_covid":"3.12","percent_visits_influenza":"18.91","percent_visits_rsv":"0.39","week_end":"2022-12-03"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"12.65","percent_visits_covid":"2.45","percent_visits_influenza":"10.2","percent_visits_rsv":"0.61","week_end":"2022-12-10"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.95","percent_visits_covid":"4.59","percent_visits_influenza":"5.61","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.51","percent_visits_covid":"2.61","percent_visits_influenza":"2.9","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.69","percent_visits_covid":"2.51","percent_visits_influenza":"2.96","percent_visits_rsv":"0.23","week_end":"2022-12-31"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.98","percent_visits_covid":"4.19","percent_visits_influenza":"2.79","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.91","percent_visits_covid":"1.45","percent_visits_influenza":"1.45","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.34","percent_visits_covid":"1.95","percent_visits_influenza":"1.11","percent_visits_rsv":"0.28","week_end":"2023-01-21"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.82","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.94","percent_visits_covid":"1.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.89","percent_visits_covid":"2.75","percent_visits_influenza":"2.14","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.44","percent_visits_covid":"4.17","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.39","percent_visits_covid":"2.82","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.76","percent_visits_covid":"3.49","percent_visits_influenza":"1.9","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.97","percent_visits_covid":"1.41","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.95","percent_visits_covid":"0.32","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.96","percent_visits_covid":"0.32","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.05","percent_visits_covid":"2.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.54","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.95","percent_visits_covid":"5.68","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.33","percent_visits_covid":"2.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.43","percent_visits_covid":"1.15","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.87","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.61","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.9","percent_visits_covid":"1.09","percent_visits_influenza":"0.54","percent_visits_rsv":"0.27","week_end":"2023-06-03"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.3","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.3","week_end":"2023-06-10"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.29","percent_visits_covid":"0.0","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.53","percent_visits_covid":"1.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.28","percent_visits_covid":"0.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.26","percent_visits_covid":"1.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.39","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.25","percent_visits_covid":"0.93","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.85","percent_visits_covid":"3.25","percent_visits_influenza":"0.59","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Howard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.37","percent_visits_covid":"3.83","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-09-02"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.62","percent_visits_covid":"3.41","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.9","percent_visits_covid":"3.46","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.02","percent_visits_covid":"2.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Howard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.17","percent_visits_covid":"1.9","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.99","percent_visits_covid":"1.99","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.77","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.38","percent_visits_covid":"1.79","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.63","percent_visits_covid":"0.82","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.45","percent_visits_covid":"1.72","percent_visits_influenza":"1.72","percent_visits_rsv":"0.34","week_end":"2023-11-04"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.24","percent_visits_covid":"2.39","percent_visits_influenza":"1.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.67","percent_visits_covid":"2.12","percent_visits_influenza":"2.73","percent_visits_rsv":"1.82","week_end":"2023-11-18"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.49","percent_visits_covid":"1.22","percent_visits_influenza":"2.44","percent_visits_rsv":"1.83","week_end":"2023-11-25"}
-,{"county":"Howard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.99","percent_visits_covid":"1.23","percent_visits_influenza":"0.61","percent_visits_rsv":"2.15","week_end":"2023-12-02"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.51","percent_visits_covid":"2.76","percent_visits_influenza":"0.0","percent_visits_rsv":"2.76","week_end":"2022-10-01"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.16","percent_visits_covid":"1.51","percent_visits_influenza":"0.13","percent_visits_rsv":"3.52","week_end":"2022-10-08"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.26","percent_visits_covid":"0.66","percent_visits_influenza":"0.27","percent_visits_rsv":"1.33","week_end":"2022-10-15"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.15","percent_visits_covid":"0.86","percent_visits_influenza":"0.72","percent_visits_rsv":"1.72","week_end":"2022-10-22"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.31","percent_visits_covid":"0.4","percent_visits_influenza":"1.32","percent_visits_rsv":"1.59","week_end":"2022-10-29"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.52","percent_visits_covid":"1.2","percent_visits_influenza":"2.26","percent_visits_rsv":"1.06","week_end":"2022-11-05"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.41","percent_visits_covid":"1.08","percent_visits_influenza":"4.19","percent_visits_rsv":"0.14","week_end":"2022-11-12"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"8.16","percent_visits_covid":"1.52","percent_visits_influenza":"6.22","percent_visits_rsv":"0.69","week_end":"2022-11-19"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"16.95","percent_visits_covid":"2.92","percent_visits_influenza":"13.58","percent_visits_rsv":"0.56","week_end":"2022-11-26"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"13.42","percent_visits_covid":"2.8","percent_visits_influenza":"10.18","percent_visits_rsv":"0.45","week_end":"2022-12-03"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"10.3","percent_visits_covid":"2.64","percent_visits_influenza":"7.53","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.67","percent_visits_covid":"2.91","percent_visits_influenza":"6.62","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.44","percent_visits_covid":"3.83","percent_visits_influenza":"5.46","percent_visits_rsv":"0.15","week_end":"2022-12-24"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.71","percent_visits_covid":"4.27","percent_visits_influenza":"2.07","percent_visits_rsv":"0.37","week_end":"2022-12-31"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.28","percent_visits_covid":"4.43","percent_visits_influenza":"1.48","percent_visits_rsv":"0.62","week_end":"2023-01-07"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.61","percent_visits_covid":"2.92","percent_visits_influenza":"0.56","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.57","percent_visits_covid":"1.66","percent_visits_influenza":"0.91","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.53","percent_visits_covid":"1.77","percent_visits_influenza":"1.77","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-02-04"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.78","percent_visits_covid":"1.1","percent_visits_influenza":"0.68","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"0.86","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"1.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.44","percent_visits_covid":"1.9","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-03-04"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.9","percent_visits_covid":"1.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.57","percent_visits_covid":"1.28","percent_visits_influenza":"0.14","percent_visits_rsv":"0.14","week_end":"2023-03-25"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.52","percent_visits_covid":"1.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.58","percent_visits_covid":"1.43","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.03","percent_visits_covid":"1.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.92","percent_visits_covid":"0.92","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.6","percent_visits_covid":"0.48","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.76","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.37","percent_visits_covid":"0.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.25","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.5","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-07-15"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.77","percent_visits_covid":"0.38","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.18","percent_visits_covid":"0.82","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.48","percent_visits_covid":"0.95","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.91","percent_visits_covid":"1.59","percent_visits_influenza":"0.21","percent_visits_rsv":"0.11","week_end":"2023-08-19"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.49","percent_visits_covid":"3.28","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-08-26"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.71","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.64","percent_visits_covid":"4.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.09","week_end":"2023-09-09"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.39","percent_visits_covid":"3.29","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-16"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.18","percent_visits_covid":"2.97","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-23"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.59","percent_visits_covid":"2.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.22","week_end":"2023-09-30"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.65","percent_visits_covid":"1.99","percent_visits_influenza":"0.11","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.93","percent_visits_covid":"1.5","percent_visits_influenza":"0.11","percent_visits_rsv":"0.32","week_end":"2023-10-14"}
-,{"county":"Independence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.45","percent_visits_covid":"0.67","percent_visits_influenza":"0.11","percent_visits_rsv":"0.67","week_end":"2023-10-21"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.4","percent_visits_covid":"0.43","percent_visits_influenza":"0.11","percent_visits_rsv":"0.86","week_end":"2023-10-28"}
-,{"county":"Independence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.92","percent_visits_covid":"0.84","percent_visits_influenza":"0.24","percent_visits_rsv":"0.84","week_end":"2023-11-04"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.83","percent_visits_covid":"1.59","percent_visits_influenza":"0.0","percent_visits_rsv":"1.25","week_end":"2023-11-11"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.84","percent_visits_covid":"0.8","percent_visits_influenza":"0.11","percent_visits_rsv":"2.05","week_end":"2023-11-18"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.65","percent_visits_covid":"1.7","percent_visits_influenza":"0.23","percent_visits_rsv":"2.72","week_end":"2023-11-25"}
-,{"county":"Independence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.77","percent_visits_covid":"2.68","percent_visits_influenza":"0.23","percent_visits_rsv":"2.1","week_end":"2023-12-02"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.51","percent_visits_covid":"2.76","percent_visits_influenza":"0.0","percent_visits_rsv":"2.76","week_end":"2022-10-01"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.16","percent_visits_covid":"1.51","percent_visits_influenza":"0.13","percent_visits_rsv":"3.52","week_end":"2022-10-08"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.26","percent_visits_covid":"0.66","percent_visits_influenza":"0.27","percent_visits_rsv":"1.33","week_end":"2022-10-15"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.15","percent_visits_covid":"0.86","percent_visits_influenza":"0.72","percent_visits_rsv":"1.72","week_end":"2022-10-22"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.31","percent_visits_covid":"0.4","percent_visits_influenza":"1.32","percent_visits_rsv":"1.59","week_end":"2022-10-29"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.52","percent_visits_covid":"1.2","percent_visits_influenza":"2.26","percent_visits_rsv":"1.06","week_end":"2022-11-05"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.41","percent_visits_covid":"1.08","percent_visits_influenza":"4.19","percent_visits_rsv":"0.14","week_end":"2022-11-12"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"8.16","percent_visits_covid":"1.52","percent_visits_influenza":"6.22","percent_visits_rsv":"0.69","week_end":"2022-11-19"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"16.95","percent_visits_covid":"2.92","percent_visits_influenza":"13.58","percent_visits_rsv":"0.56","week_end":"2022-11-26"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"13.42","percent_visits_covid":"2.8","percent_visits_influenza":"10.18","percent_visits_rsv":"0.45","week_end":"2022-12-03"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"10.3","percent_visits_covid":"2.64","percent_visits_influenza":"7.53","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.67","percent_visits_covid":"2.91","percent_visits_influenza":"6.62","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.44","percent_visits_covid":"3.83","percent_visits_influenza":"5.46","percent_visits_rsv":"0.15","week_end":"2022-12-24"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.71","percent_visits_covid":"4.27","percent_visits_influenza":"2.07","percent_visits_rsv":"0.37","week_end":"2022-12-31"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.28","percent_visits_covid":"4.43","percent_visits_influenza":"1.48","percent_visits_rsv":"0.62","week_end":"2023-01-07"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.61","percent_visits_covid":"2.92","percent_visits_influenza":"0.56","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.57","percent_visits_covid":"1.66","percent_visits_influenza":"0.91","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.53","percent_visits_covid":"1.77","percent_visits_influenza":"1.77","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-02-04"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.78","percent_visits_covid":"1.1","percent_visits_influenza":"0.68","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"0.86","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"1.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.44","percent_visits_covid":"1.9","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-03-04"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.9","percent_visits_covid":"1.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.57","percent_visits_covid":"1.28","percent_visits_influenza":"0.14","percent_visits_rsv":"0.14","week_end":"2023-03-25"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.52","percent_visits_covid":"1.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.58","percent_visits_covid":"1.43","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.03","percent_visits_covid":"1.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.92","percent_visits_covid":"0.92","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.6","percent_visits_covid":"0.48","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.76","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.37","percent_visits_covid":"0.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.25","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.5","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-07-15"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.77","percent_visits_covid":"0.38","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.18","percent_visits_covid":"0.82","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.48","percent_visits_covid":"0.95","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.91","percent_visits_covid":"1.59","percent_visits_influenza":"0.21","percent_visits_rsv":"0.11","week_end":"2023-08-19"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.49","percent_visits_covid":"3.28","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-08-26"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.71","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.64","percent_visits_covid":"4.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.09","week_end":"2023-09-09"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.39","percent_visits_covid":"3.29","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-16"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.18","percent_visits_covid":"2.97","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-23"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.59","percent_visits_covid":"2.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.22","week_end":"2023-09-30"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.65","percent_visits_covid":"1.99","percent_visits_influenza":"0.11","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.93","percent_visits_covid":"1.5","percent_visits_influenza":"0.11","percent_visits_rsv":"0.32","week_end":"2023-10-14"}
-,{"county":"Izard","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.45","percent_visits_covid":"0.67","percent_visits_influenza":"0.11","percent_visits_rsv":"0.67","week_end":"2023-10-21"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.4","percent_visits_covid":"0.43","percent_visits_influenza":"0.11","percent_visits_rsv":"0.86","week_end":"2023-10-28"}
-,{"county":"Izard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.92","percent_visits_covid":"0.84","percent_visits_influenza":"0.24","percent_visits_rsv":"0.84","week_end":"2023-11-04"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.83","percent_visits_covid":"1.59","percent_visits_influenza":"0.0","percent_visits_rsv":"1.25","week_end":"2023-11-11"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.84","percent_visits_covid":"0.8","percent_visits_influenza":"0.11","percent_visits_rsv":"2.05","week_end":"2023-11-18"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.65","percent_visits_covid":"1.7","percent_visits_influenza":"0.23","percent_visits_rsv":"2.72","week_end":"2023-11-25"}
-,{"county":"Izard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.77","percent_visits_covid":"2.68","percent_visits_influenza":"0.23","percent_visits_rsv":"2.1","week_end":"2023-12-02"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-22"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-29"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-25"}
-,{"county":"Jackson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Jackson, AR","hsa_counties":"Jackson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.06","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"1.48","week_end":"2022-10-01"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.21","percent_visits_covid":"1.4","percent_visits_influenza":"1.75","percent_visits_rsv":"1.4","week_end":"2022-10-08"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.68","percent_visits_covid":"0.32","percent_visits_influenza":"4.42","percent_visits_rsv":"0.95","week_end":"2022-10-15"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.7","percent_visits_covid":"0.95","percent_visits_influenza":"3.48","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.29","percent_visits_covid":"0.54","percent_visits_influenza":"10.22","percent_visits_rsv":"0.54","week_end":"2022-10-29"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.2","percent_visits_covid":"0.21","percent_visits_influenza":"5.79","percent_visits_rsv":"0.21","week_end":"2022-11-05"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.7","percent_visits_covid":"1.4","percent_visits_influenza":"10.64","percent_visits_rsv":"0.47","week_end":"2022-11-12"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.67","percent_visits_covid":"0.67","percent_visits_influenza":"10.0","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"14.05","percent_visits_covid":"1.63","percent_visits_influenza":"12.73","percent_visits_rsv":"0.51","week_end":"2022-11-26"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.71","percent_visits_covid":"2.54","percent_visits_influenza":"10.54","percent_visits_rsv":"0.29","week_end":"2022-12-03"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.41","percent_visits_covid":"2.51","percent_visits_influenza":"8.68","percent_visits_rsv":"0.19","week_end":"2022-12-10"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.87","percent_visits_covid":"1.61","percent_visits_influenza":"5.26","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"9.45","percent_visits_covid":"3.36","percent_visits_influenza":"6.41","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.06","percent_visits_covid":"4.36","percent_visits_influenza":"6.64","percent_visits_rsv":"0.19","week_end":"2022-12-31"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.28","percent_visits_covid":"3.51","percent_visits_influenza":"3.51","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.42","percent_visits_covid":"3.11","percent_visits_influenza":"3.91","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.83","percent_visits_covid":"2.26","percent_visits_influenza":"3.29","percent_visits_rsv":"0.21","week_end":"2023-01-21"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.26","percent_visits_covid":"2.37","percent_visits_influenza":"4.21","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.65","percent_visits_covid":"1.52","percent_visits_influenza":"4.34","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.32","percent_visits_covid":"1.6","percent_visits_influenza":"3.91","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.39","percent_visits_covid":"1.6","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2023-02-18"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.54","percent_visits_covid":"2.13","percent_visits_influenza":"3.94","percent_visits_rsv":"0.21","week_end":"2023-02-25"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.04","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.88","percent_visits_covid":"1.22","percent_visits_influenza":"3.76","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.11","percent_visits_covid":"1.41","percent_visits_influenza":"3.7","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.69","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.81","percent_visits_covid":"0.5","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.28","percent_visits_covid":"0.65","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.15","percent_visits_covid":"0.63","percent_visits_influenza":"2.62","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.81","percent_visits_covid":"0.32","percent_visits_influenza":"1.6","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.08","percent_visits_covid":"0.73","percent_visits_influenza":"1.56","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.23","percent_visits_covid":"0.85","percent_visits_influenza":"1.48","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.18","percent_visits_covid":"0.5","percent_visits_influenza":"1.59","percent_visits_rsv":"0.1","week_end":"2023-05-13"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.37","percent_visits_covid":"1.09","percent_visits_influenza":"3.38","percent_visits_rsv":"0.4","week_end":"2023-05-20"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.77","percent_visits_covid":"0.69","percent_visits_influenza":"1.08","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.46","percent_visits_covid":"0.49","percent_visits_influenza":"0.97","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.92","percent_visits_covid":"1.01","percent_visits_influenza":"1.01","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.43","percent_visits_covid":"0.1","percent_visits_influenza":"1.12","percent_visits_rsv":"0.31","week_end":"2023-06-17"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"0.62","percent_visits_influenza":"1.03","percent_visits_rsv":"0.1","week_end":"2023-06-24"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.48","percent_visits_covid":"0.42","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-07-01"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.99","percent_visits_covid":"0.63","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.8","percent_visits_rsv":"0.2","week_end":"2023-07-15"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.39","percent_visits_covid":"0.89","percent_visits_influenza":"1.49","percent_visits_rsv":"0.2","week_end":"2023-07-22"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.95","percent_visits_covid":"1.3","percent_visits_influenza":"0.76","percent_visits_rsv":"0.11","week_end":"2023-07-29"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.36","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"0.1","week_end":"2023-08-05"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"1.37","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.4","percent_visits_covid":"2.06","percent_visits_influenza":"1.34","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.88","percent_visits_covid":"3.66","percent_visits_influenza":"2.31","percent_visits_rsv":"0.29","week_end":"2023-08-26"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.38","percent_visits_covid":"5.45","percent_visits_influenza":"1.13","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.98","percent_visits_influenza":"1.72","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.1","percent_visits_covid":"1.9","percent_visits_influenza":"1.4","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.1","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2023-09-23"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.05","percent_visits_covid":"1.81","percent_visits_influenza":"0.86","percent_visits_rsv":"0.48","week_end":"2023-09-30"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.78","percent_visits_covid":"1.28","percent_visits_influenza":"1.39","percent_visits_rsv":"0.43","week_end":"2023-10-07"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.56","percent_visits_covid":"1.82","percent_visits_influenza":"2.63","percent_visits_rsv":"0.3","week_end":"2023-10-14"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.76","percent_visits_covid":"0.97","percent_visits_influenza":"2.36","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.12","percent_visits_covid":"0.77","percent_visits_influenza":"2.49","percent_visits_rsv":"1.15","week_end":"2023-10-28"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.95","percent_visits_covid":"0.44","percent_visits_influenza":"2.63","percent_visits_rsv":"1.43","week_end":"2023-11-04"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.58","percent_visits_covid":"1.06","percent_visits_influenza":"1.74","percent_visits_rsv":"0.87","week_end":"2023-11-11"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.59","percent_visits_covid":"0.82","percent_visits_influenza":"2.16","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.67","percent_visits_covid":"2.0","percent_visits_influenza":"2.73","percent_visits_rsv":"1.68","week_end":"2023-11-25"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.04","percent_visits_covid":"0.72","percent_visits_influenza":"2.36","percent_visits_rsv":"2.36","week_end":"2023-12-02"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-22"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-29"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-25"}
-,{"county":"Johnson","ed_trends_covid":"No Data","ed_trends_influenza":"No Data","ed_trends_rsv":"No Data","geography":"Arkansas","hsa":"Johnson, AR","hsa_counties":"Johnson","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.6","percent_visits_covid":"0.78","percent_visits_influenza":"0.26","percent_visits_rsv":"1.56","week_end":"2022-10-01"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"0.24","percent_visits_rsv":"1.95","week_end":"2022-10-08"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.66","percent_visits_covid":"1.65","percent_visits_influenza":"0.47","percent_visits_rsv":"3.54","week_end":"2022-10-15"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.28","percent_visits_covid":"1.01","percent_visits_influenza":"2.52","percent_visits_rsv":"0.76","week_end":"2022-10-22"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"8.43","percent_visits_covid":"1.45","percent_visits_influenza":"3.86","percent_visits_rsv":"4.34","week_end":"2022-10-29"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.29","percent_visits_covid":"1.33","percent_visits_influenza":"7.08","percent_visits_rsv":"0.88","week_end":"2022-11-05"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"15.5","percent_visits_covid":"0.83","percent_visits_influenza":"11.78","percent_visits_rsv":"3.51","week_end":"2022-11-12"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"21.99","percent_visits_covid":"0.83","percent_visits_influenza":"19.29","percent_visits_rsv":"1.87","week_end":"2022-11-19"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"26.37","percent_visits_covid":"1.13","percent_visits_influenza":"25.24","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"22.03","percent_visits_covid":"3.12","percent_visits_influenza":"18.91","percent_visits_rsv":"0.39","week_end":"2022-12-03"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"12.65","percent_visits_covid":"2.45","percent_visits_influenza":"10.2","percent_visits_rsv":"0.61","week_end":"2022-12-10"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.95","percent_visits_covid":"4.59","percent_visits_influenza":"5.61","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.51","percent_visits_covid":"2.61","percent_visits_influenza":"2.9","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.69","percent_visits_covid":"2.51","percent_visits_influenza":"2.96","percent_visits_rsv":"0.23","week_end":"2022-12-31"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.98","percent_visits_covid":"4.19","percent_visits_influenza":"2.79","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.91","percent_visits_covid":"1.45","percent_visits_influenza":"1.45","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.34","percent_visits_covid":"1.95","percent_visits_influenza":"1.11","percent_visits_rsv":"0.28","week_end":"2023-01-21"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.82","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.94","percent_visits_covid":"1.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.89","percent_visits_covid":"2.75","percent_visits_influenza":"2.14","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.44","percent_visits_covid":"4.17","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.39","percent_visits_covid":"2.82","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.76","percent_visits_covid":"3.49","percent_visits_influenza":"1.9","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.97","percent_visits_covid":"1.41","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.95","percent_visits_covid":"0.32","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.96","percent_visits_covid":"0.32","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.05","percent_visits_covid":"2.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.54","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.95","percent_visits_covid":"5.68","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.33","percent_visits_covid":"2.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.43","percent_visits_covid":"1.15","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.87","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.61","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.9","percent_visits_covid":"1.09","percent_visits_influenza":"0.54","percent_visits_rsv":"0.27","week_end":"2023-06-03"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.3","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.3","week_end":"2023-06-10"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.29","percent_visits_covid":"0.0","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.53","percent_visits_covid":"1.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.28","percent_visits_covid":"0.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.26","percent_visits_covid":"1.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.39","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.25","percent_visits_covid":"0.93","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.85","percent_visits_covid":"3.25","percent_visits_influenza":"0.59","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.37","percent_visits_covid":"3.83","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-09-02"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.62","percent_visits_covid":"3.41","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.9","percent_visits_covid":"3.46","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.02","percent_visits_covid":"2.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.17","percent_visits_covid":"1.9","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.99","percent_visits_covid":"1.99","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.77","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.38","percent_visits_covid":"1.79","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.63","percent_visits_covid":"0.82","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.45","percent_visits_covid":"1.72","percent_visits_influenza":"1.72","percent_visits_rsv":"0.34","week_end":"2023-11-04"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.24","percent_visits_covid":"2.39","percent_visits_influenza":"1.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.67","percent_visits_covid":"2.12","percent_visits_influenza":"2.73","percent_visits_rsv":"1.82","week_end":"2023-11-18"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.49","percent_visits_covid":"1.22","percent_visits_influenza":"2.44","percent_visits_rsv":"1.83","week_end":"2023-11-25"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.99","percent_visits_covid":"1.23","percent_visits_influenza":"0.61","percent_visits_rsv":"2.15","week_end":"2023-12-02"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.01","percent_visits_covid":"1.42","percent_visits_influenza":"0.38","percent_visits_rsv":"1.34","week_end":"2022-10-01"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.3","percent_visits_covid":"1.3","percent_visits_influenza":"0.33","percent_visits_rsv":"1.67","week_end":"2022-10-08"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.59","percent_visits_covid":"1.49","percent_visits_influenza":"1.26","percent_visits_rsv":"2.0","week_end":"2022-10-15"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.94","percent_visits_covid":"1.56","percent_visits_influenza":"0.94","percent_visits_rsv":"1.44","week_end":"2022-10-22"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.81","percent_visits_covid":"1.03","percent_visits_influenza":"2.67","percent_visits_rsv":"1.22","week_end":"2022-10-29"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"6.71","percent_visits_covid":"1.26","percent_visits_influenza":"3.93","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.81","percent_visits_covid":"1.15","percent_visits_influenza":"6.22","percent_visits_rsv":"1.62","week_end":"2022-11-12"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.86","percent_visits_covid":"0.98","percent_visits_influenza":"7.08","percent_visits_rsv":"0.95","week_end":"2022-11-19"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"15.56","percent_visits_covid":"1.52","percent_visits_influenza":"13.26","percent_visits_rsv":"1.18","week_end":"2022-11-26"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"10.5","percent_visits_covid":"1.84","percent_visits_influenza":"8.06","percent_visits_rsv":"1.08","week_end":"2022-12-03"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.98","percent_visits_covid":"2.02","percent_visits_influenza":"6.51","percent_visits_rsv":"0.56","week_end":"2022-12-10"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.44","percent_visits_covid":"2.76","percent_visits_influenza":"4.49","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.07","percent_visits_covid":"3.94","percent_visits_influenza":"2.84","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.77","percent_visits_covid":"4.9","percent_visits_influenza":"2.76","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.9","percent_visits_covid":"3.77","percent_visits_influenza":"2.01","percent_visits_rsv":"0.25","week_end":"2023-01-07"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.98","percent_visits_covid":"3.68","percent_visits_influenza":"0.94","percent_visits_rsv":"0.43","week_end":"2023-01-14"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.14","percent_visits_covid":"2.5","percent_visits_influenza":"0.52","percent_visits_rsv":"0.16","week_end":"2023-01-21"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.17","percent_visits_covid":"2.56","percent_visits_influenza":"0.45","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.95","percent_visits_covid":"2.56","percent_visits_influenza":"0.26","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.12","percent_visits_covid":"1.76","percent_visits_influenza":"0.32","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.36","percent_visits_covid":"2.08","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.98","percent_visits_covid":"1.52","percent_visits_influenza":"0.43","percent_visits_rsv":"0.04","week_end":"2023-02-25"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.79","percent_visits_covid":"1.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.91","percent_visits_influenza":"0.12","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.08","percent_visits_covid":"0.81","percent_visits_influenza":"0.15","percent_visits_rsv":"0.12","week_end":"2023-03-18"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.26","percent_visits_covid":"0.9","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-03-25"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.34","percent_visits_covid":"0.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.94","percent_visits_covid":"0.7","percent_visits_influenza":"0.16","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.18","percent_visits_covid":"0.87","percent_visits_influenza":"0.12","percent_visits_rsv":"0.2","week_end":"2023-04-15"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.79","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.74","percent_visits_covid":"1.58","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-04-29"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.82","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.2","percent_visits_covid":"0.84","percent_visits_influenza":"0.35","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.81","percent_visits_covid":"0.6","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.59","percent_visits_covid":"0.37","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-05-27"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.37","percent_visits_covid":"0.26","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.33","percent_visits_covid":"0.22","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.25","percent_visits_covid":"0.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.67","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.52","percent_visits_covid":"0.29","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.41","percent_visits_covid":"0.26","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.54","percent_visits_covid":"0.51","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.44","percent_visits_covid":"0.37","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.14","percent_visits_covid":"0.99","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.99","percent_visits_covid":"1.88","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.15","percent_visits_covid":"3.08","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.82","percent_visits_covid":"3.75","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.25","percent_visits_covid":"4.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.92","percent_visits_covid":"4.65","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-09-09"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.89","percent_visits_covid":"2.62","percent_visits_influenza":"0.2","percent_visits_rsv":"0.07","week_end":"2023-09-16"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.64","percent_visits_covid":"2.43","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-09-23"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.25","percent_visits_covid":"1.72","percent_visits_influenza":"0.49","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Lawrence","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.06","percent_visits_covid":"0.9","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.33","percent_visits_covid":"1.15","percent_visits_influenza":"2.11","percent_visits_rsv":"0.07","week_end":"2023-10-14"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.09","percent_visits_covid":"1.13","percent_visits_influenza":"2.78","percent_visits_rsv":"0.18","week_end":"2023-10-21"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.43","percent_visits_covid":"0.99","percent_visits_influenza":"2.05","percent_visits_rsv":"0.46","week_end":"2023-10-28"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.93","percent_visits_covid":"1.2","percent_visits_influenza":"2.14","percent_visits_rsv":"0.62","week_end":"2023-11-04"}
-,{"county":"Lawrence","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.37","percent_visits_covid":"1.67","percent_visits_influenza":"2.99","percent_visits_rsv":"0.92","week_end":"2023-11-11"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.54","percent_visits_covid":"1.72","percent_visits_influenza":"2.45","percent_visits_rsv":"1.47","week_end":"2023-11-18"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.42","percent_visits_covid":"1.2","percent_visits_influenza":"2.62","percent_visits_rsv":"1.76","week_end":"2023-11-25"}
-,{"county":"Lawrence","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.64","percent_visits_covid":"1.8","percent_visits_influenza":"1.45","percent_visits_rsv":"1.42","week_end":"2023-12-02"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.52","percent_visits_covid":"1.47","percent_visits_influenza":"0.63","percent_visits_rsv":"0.63","week_end":"2022-10-01"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.78","percent_visits_covid":"1.32","percent_visits_influenza":"2.08","percent_visits_rsv":"0.38","week_end":"2022-10-08"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.18","percent_visits_covid":"1.19","percent_visits_influenza":"1.79","percent_visits_rsv":"0.4","week_end":"2022-10-15"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.85","percent_visits_covid":"1.03","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2022-10-22"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.7","percent_visits_covid":"0.83","percent_visits_influenza":"1.45","percent_visits_rsv":"0.41","week_end":"2022-10-29"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.12","percent_visits_covid":"1.31","percent_visits_influenza":"2.43","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"7.78","percent_visits_covid":"1.32","percent_visits_influenza":"6.46","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.75","percent_visits_covid":"0.7","percent_visits_influenza":"4.05","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"10.32","percent_visits_covid":"1.78","percent_visits_influenza":"8.54","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"9.44","percent_visits_covid":"2.19","percent_visits_influenza":"6.91","percent_visits_rsv":"0.34","week_end":"2022-12-03"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"6.02","percent_visits_covid":"1.59","percent_visits_influenza":"4.25","percent_visits_rsv":"0.18","week_end":"2022-12-10"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.53","percent_visits_covid":"1.24","percent_visits_influenza":"2.28","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.7","percent_visits_covid":"1.92","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.83","percent_visits_covid":"3.09","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.93","percent_visits_covid":"3.61","percent_visits_influenza":"1.33","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.84","percent_visits_covid":"1.64","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.88","percent_visits_covid":"1.46","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.89","percent_visits_covid":"1.68","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.51","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.68","percent_visits_covid":"1.47","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.82","percent_visits_covid":"0.82","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.69","percent_visits_covid":"1.92","percent_visits_influenza":"0.38","percent_visits_rsv":"0.38","week_end":"2023-02-25"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.58","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.8","percent_visits_covid":"0.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.7","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.12","percent_visits_covid":"1.12","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.02","percent_visits_covid":"1.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.93","percent_visits_covid":"0.93","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.44","percent_visits_covid":"0.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.38","percent_visits_covid":"0.19","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.38","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.61","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.2","week_end":"2023-06-10"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.2","percent_visits_covid":"0.0","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.18","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.18","week_end":"2023-07-01"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.19","percent_visits_covid":"0.0","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.39","percent_visits_covid":"0.19","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.61","percent_visits_covid":"1.07","percent_visits_influenza":"0.36","percent_visits_rsv":"0.18","week_end":"2023-07-22"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.5","percent_visits_covid":"1.12","percent_visits_influenza":"0.19","percent_visits_rsv":"0.19","week_end":"2023-07-29"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.31","percent_visits_covid":"3.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.87","percent_visits_covid":"1.87","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.71","percent_visits_covid":"2.71","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.5","percent_visits_covid":"2.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.13","percent_visits_covid":"4.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.63","percent_visits_covid":"2.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.41","percent_visits_covid":"3.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.97","percent_visits_covid":"1.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.4","percent_visits_covid":"2.0","percent_visits_influenza":"0.2","percent_visits_rsv":"0.2","week_end":"2023-10-07"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.89","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2023-10-14"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.49","percent_visits_covid":"2.08","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.8","percent_visits_covid":"1.49","percent_visits_influenza":"0.56","percent_visits_rsv":"0.75","week_end":"2023-10-28"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.23","percent_visits_covid":"1.41","percent_visits_influenza":"0.4","percent_visits_rsv":"1.41","week_end":"2023-11-04"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.79","percent_visits_covid":"2.35","percent_visits_influenza":"0.9","percent_visits_rsv":"0.54","week_end":"2023-11-11"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.4","percent_visits_covid":"0.76","percent_visits_influenza":"2.29","percent_visits_rsv":"1.34","week_end":"2023-11-18"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"7.44","percent_visits_covid":"1.53","percent_visits_influenza":"3.44","percent_visits_rsv":"2.48","week_end":"2023-11-25"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"5.65","percent_visits_covid":"1.95","percent_visits_influenza":"1.95","percent_visits_rsv":"1.75","week_end":"2023-12-02"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.06","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"1.48","week_end":"2022-10-01"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.21","percent_visits_covid":"1.4","percent_visits_influenza":"1.75","percent_visits_rsv":"1.4","week_end":"2022-10-08"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.68","percent_visits_covid":"0.32","percent_visits_influenza":"4.42","percent_visits_rsv":"0.95","week_end":"2022-10-15"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.7","percent_visits_covid":"0.95","percent_visits_influenza":"3.48","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.29","percent_visits_covid":"0.54","percent_visits_influenza":"10.22","percent_visits_rsv":"0.54","week_end":"2022-10-29"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.2","percent_visits_covid":"0.21","percent_visits_influenza":"5.79","percent_visits_rsv":"0.21","week_end":"2022-11-05"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.7","percent_visits_covid":"1.4","percent_visits_influenza":"10.64","percent_visits_rsv":"0.47","week_end":"2022-11-12"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.67","percent_visits_covid":"0.67","percent_visits_influenza":"10.0","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"14.05","percent_visits_covid":"1.63","percent_visits_influenza":"12.73","percent_visits_rsv":"0.51","week_end":"2022-11-26"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"11.71","percent_visits_covid":"2.54","percent_visits_influenza":"10.54","percent_visits_rsv":"0.29","week_end":"2022-12-03"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.41","percent_visits_covid":"2.51","percent_visits_influenza":"8.68","percent_visits_rsv":"0.19","week_end":"2022-12-10"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.87","percent_visits_covid":"1.61","percent_visits_influenza":"5.26","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"9.45","percent_visits_covid":"3.36","percent_visits_influenza":"6.41","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"10.06","percent_visits_covid":"4.36","percent_visits_influenza":"6.64","percent_visits_rsv":"0.19","week_end":"2022-12-31"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.28","percent_visits_covid":"3.51","percent_visits_influenza":"3.51","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.42","percent_visits_covid":"3.11","percent_visits_influenza":"3.91","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.83","percent_visits_covid":"2.26","percent_visits_influenza":"3.29","percent_visits_rsv":"0.21","week_end":"2023-01-21"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.26","percent_visits_covid":"2.37","percent_visits_influenza":"4.21","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.65","percent_visits_covid":"1.52","percent_visits_influenza":"4.34","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.32","percent_visits_covid":"1.6","percent_visits_influenza":"3.91","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.39","percent_visits_covid":"1.6","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2023-02-18"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.54","percent_visits_covid":"2.13","percent_visits_influenza":"3.94","percent_visits_rsv":"0.21","week_end":"2023-02-25"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.04","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.88","percent_visits_covid":"1.22","percent_visits_influenza":"3.76","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.11","percent_visits_covid":"1.41","percent_visits_influenza":"3.7","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.69","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.81","percent_visits_covid":"0.5","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.28","percent_visits_covid":"0.65","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.15","percent_visits_covid":"0.63","percent_visits_influenza":"2.62","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.81","percent_visits_covid":"0.32","percent_visits_influenza":"1.6","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.08","percent_visits_covid":"0.73","percent_visits_influenza":"1.56","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.23","percent_visits_covid":"0.85","percent_visits_influenza":"1.48","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.18","percent_visits_covid":"0.5","percent_visits_influenza":"1.59","percent_visits_rsv":"0.1","week_end":"2023-05-13"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.37","percent_visits_covid":"1.09","percent_visits_influenza":"3.38","percent_visits_rsv":"0.4","week_end":"2023-05-20"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.77","percent_visits_covid":"0.69","percent_visits_influenza":"1.08","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.46","percent_visits_covid":"0.49","percent_visits_influenza":"0.97","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.92","percent_visits_covid":"1.01","percent_visits_influenza":"1.01","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.43","percent_visits_covid":"0.1","percent_visits_influenza":"1.12","percent_visits_rsv":"0.31","week_end":"2023-06-17"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"0.62","percent_visits_influenza":"1.03","percent_visits_rsv":"0.1","week_end":"2023-06-24"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.48","percent_visits_covid":"0.42","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-07-01"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.99","percent_visits_covid":"0.63","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.8","percent_visits_rsv":"0.2","week_end":"2023-07-15"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.39","percent_visits_covid":"0.89","percent_visits_influenza":"1.49","percent_visits_rsv":"0.2","week_end":"2023-07-22"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.95","percent_visits_covid":"1.3","percent_visits_influenza":"0.76","percent_visits_rsv":"0.11","week_end":"2023-07-29"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.36","percent_visits_covid":"1.73","percent_visits_influenza":"1.73","percent_visits_rsv":"0.1","week_end":"2023-08-05"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"1.76","percent_visits_covid":"1.37","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.4","percent_visits_covid":"2.06","percent_visits_influenza":"1.34","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Lincoln","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.88","percent_visits_covid":"3.66","percent_visits_influenza":"2.31","percent_visits_rsv":"0.29","week_end":"2023-08-26"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"6.38","percent_visits_covid":"5.45","percent_visits_influenza":"1.13","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.98","percent_visits_influenza":"1.72","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.1","percent_visits_covid":"1.9","percent_visits_influenza":"1.4","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.16","percent_visits_covid":"3.1","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2023-09-23"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.05","percent_visits_covid":"1.81","percent_visits_influenza":"0.86","percent_visits_rsv":"0.48","week_end":"2023-09-30"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"2.78","percent_visits_covid":"1.28","percent_visits_influenza":"1.39","percent_visits_rsv":"0.43","week_end":"2023-10-07"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.56","percent_visits_covid":"1.82","percent_visits_influenza":"2.63","percent_visits_rsv":"0.3","week_end":"2023-10-14"}
-,{"county":"Lincoln","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.76","percent_visits_covid":"0.97","percent_visits_influenza":"2.36","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"4.12","percent_visits_covid":"0.77","percent_visits_influenza":"2.49","percent_visits_rsv":"1.15","week_end":"2023-10-28"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.95","percent_visits_covid":"0.44","percent_visits_influenza":"2.63","percent_visits_rsv":"1.43","week_end":"2023-11-04"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.58","percent_visits_covid":"1.06","percent_visits_influenza":"1.74","percent_visits_rsv":"0.87","week_end":"2023-11-11"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"3.59","percent_visits_covid":"0.82","percent_visits_influenza":"2.16","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.67","percent_visits_covid":"2.0","percent_visits_influenza":"2.73","percent_visits_rsv":"1.68","week_end":"2023-11-25"}
-,{"county":"Lincoln","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Jefferson (Pine Bluff), AR - Drew, AR","hsa_counties":"Bradley, Cleveland, Desha, Drew, Jefferson, Lincoln","percent_visits_combined":"5.04","percent_visits_covid":"0.72","percent_visits_influenza":"2.36","percent_visits_rsv":"2.36","week_end":"2023-12-02"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.6","percent_visits_covid":"0.78","percent_visits_influenza":"0.26","percent_visits_rsv":"1.56","week_end":"2022-10-01"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"0.24","percent_visits_rsv":"1.95","week_end":"2022-10-08"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.66","percent_visits_covid":"1.65","percent_visits_influenza":"0.47","percent_visits_rsv":"3.54","week_end":"2022-10-15"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.28","percent_visits_covid":"1.01","percent_visits_influenza":"2.52","percent_visits_rsv":"0.76","week_end":"2022-10-22"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"8.43","percent_visits_covid":"1.45","percent_visits_influenza":"3.86","percent_visits_rsv":"4.34","week_end":"2022-10-29"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.29","percent_visits_covid":"1.33","percent_visits_influenza":"7.08","percent_visits_rsv":"0.88","week_end":"2022-11-05"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"15.5","percent_visits_covid":"0.83","percent_visits_influenza":"11.78","percent_visits_rsv":"3.51","week_end":"2022-11-12"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"21.99","percent_visits_covid":"0.83","percent_visits_influenza":"19.29","percent_visits_rsv":"1.87","week_end":"2022-11-19"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"26.37","percent_visits_covid":"1.13","percent_visits_influenza":"25.24","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"22.03","percent_visits_covid":"3.12","percent_visits_influenza":"18.91","percent_visits_rsv":"0.39","week_end":"2022-12-03"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"12.65","percent_visits_covid":"2.45","percent_visits_influenza":"10.2","percent_visits_rsv":"0.61","week_end":"2022-12-10"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.95","percent_visits_covid":"4.59","percent_visits_influenza":"5.61","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.51","percent_visits_covid":"2.61","percent_visits_influenza":"2.9","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.69","percent_visits_covid":"2.51","percent_visits_influenza":"2.96","percent_visits_rsv":"0.23","week_end":"2022-12-31"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.98","percent_visits_covid":"4.19","percent_visits_influenza":"2.79","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.91","percent_visits_covid":"1.45","percent_visits_influenza":"1.45","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.34","percent_visits_covid":"1.95","percent_visits_influenza":"1.11","percent_visits_rsv":"0.28","week_end":"2023-01-21"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.82","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.94","percent_visits_covid":"1.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.89","percent_visits_covid":"2.75","percent_visits_influenza":"2.14","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.44","percent_visits_covid":"4.17","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.39","percent_visits_covid":"2.82","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.76","percent_visits_covid":"3.49","percent_visits_influenza":"1.9","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.97","percent_visits_covid":"1.41","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.95","percent_visits_covid":"0.32","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.96","percent_visits_covid":"0.32","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.05","percent_visits_covid":"2.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.54","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.95","percent_visits_covid":"5.68","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.33","percent_visits_covid":"2.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.43","percent_visits_covid":"1.15","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.87","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.61","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.9","percent_visits_covid":"1.09","percent_visits_influenza":"0.54","percent_visits_rsv":"0.27","week_end":"2023-06-03"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.3","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.3","week_end":"2023-06-10"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.29","percent_visits_covid":"0.0","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.53","percent_visits_covid":"1.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.28","percent_visits_covid":"0.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.26","percent_visits_covid":"1.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.39","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.25","percent_visits_covid":"0.93","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.85","percent_visits_covid":"3.25","percent_visits_influenza":"0.59","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Little River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.37","percent_visits_covid":"3.83","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-09-02"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.62","percent_visits_covid":"3.41","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.9","percent_visits_covid":"3.46","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.02","percent_visits_covid":"2.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Little River","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.17","percent_visits_covid":"1.9","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.99","percent_visits_covid":"1.99","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.77","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.38","percent_visits_covid":"1.79","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.63","percent_visits_covid":"0.82","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.45","percent_visits_covid":"1.72","percent_visits_influenza":"1.72","percent_visits_rsv":"0.34","week_end":"2023-11-04"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.24","percent_visits_covid":"2.39","percent_visits_influenza":"1.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.67","percent_visits_covid":"2.12","percent_visits_influenza":"2.73","percent_visits_rsv":"1.82","week_end":"2023-11-18"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.49","percent_visits_covid":"1.22","percent_visits_influenza":"2.44","percent_visits_rsv":"1.83","week_end":"2023-11-25"}
-,{"county":"Little River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.99","percent_visits_covid":"1.23","percent_visits_influenza":"0.61","percent_visits_rsv":"2.15","week_end":"2023-12-02"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.69","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2022-10-08"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.23","percent_visits_covid":"0.98","percent_visits_influenza":"0.26","percent_visits_rsv":"0.98","week_end":"2022-10-15"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.06","percent_visits_covid":"0.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.75","week_end":"2022-10-22"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.83","percent_visits_covid":"0.4","percent_visits_influenza":"2.45","percent_visits_rsv":"2.05","week_end":"2022-10-29"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.84","percent_visits_covid":"0.95","percent_visits_influenza":"2.36","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.67","percent_visits_covid":"1.01","percent_visits_influenza":"3.78","percent_visits_rsv":"0.95","week_end":"2022-11-12"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.31","percent_visits_covid":"0.34","percent_visits_influenza":"4.49","percent_visits_rsv":"0.54","week_end":"2022-11-19"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"13.18","percent_visits_covid":"1.79","percent_visits_influenza":"10.84","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.0","percent_visits_covid":"1.05","percent_visits_influenza":"6.6","percent_visits_rsv":"0.41","week_end":"2022-12-03"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.77","percent_visits_covid":"1.88","percent_visits_influenza":"5.83","percent_visits_rsv":"0.29","week_end":"2022-12-10"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.57","percent_visits_covid":"2.17","percent_visits_influenza":"5.21","percent_visits_rsv":"0.25","week_end":"2022-12-17"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.4","percent_visits_covid":"3.95","percent_visits_influenza":"4.45","percent_visits_rsv":"0.07","week_end":"2022-12-24"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.7","percent_visits_covid":"3.94","percent_visits_influenza":"3.94","percent_visits_rsv":"0.06","week_end":"2022-12-31"}
-,{"county":"Logan","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.45","percent_visits_covid":"2.95","percent_visits_influenza":"2.37","percent_visits_rsv":"0.19","week_end":"2023-01-07"}
-,{"county":"Logan","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.21","percent_visits_covid":"1.86","percent_visits_influenza":"1.43","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Logan","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.6","percent_visits_covid":"1.13","percent_visits_influenza":"1.34","percent_visits_rsv":"0.2","week_end":"2023-01-21"}
-,{"county":"Logan","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.71","percent_visits_covid":"1.29","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.41","percent_visits_covid":"0.62","percent_visits_influenza":"0.78","percent_visits_rsv":"0.08","week_end":"2023-02-04"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.75","percent_visits_covid":"0.34","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.32","percent_visits_covid":"0.76","percent_visits_influenza":"0.48","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.61","percent_visits_covid":"1.03","percent_visits_influenza":"0.45","percent_visits_rsv":"0.13","week_end":"2023-02-25"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.42","percent_visits_covid":"0.97","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.12","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.78","percent_visits_covid":"0.59","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.21","percent_visits_covid":"1.66","percent_visits_influenza":"0.62","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.36","percent_visits_covid":"1.09","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.98","percent_visits_covid":"0.52","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.69","percent_visits_covid":"0.38","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.26","percent_visits_covid":"1.0","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.24","percent_visits_covid":"1.11","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.76","percent_visits_covid":"0.53","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.79","percent_visits_covid":"0.6","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.8","percent_visits_covid":"0.61","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.43","percent_visits_covid":"0.3","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.37","percent_visits_covid":"0.3","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.6","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.92","percent_visits_covid":"0.73","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.82","percent_visits_covid":"0.63","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.61","percent_visits_covid":"0.49","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.24","percent_visits_covid":"0.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.52","percent_visits_covid":"0.45","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.84","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.49","percent_visits_covid":"1.31","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.05","percent_visits_covid":"0.99","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.67","percent_visits_covid":"1.43","percent_visits_influenza":"0.24","percent_visits_rsv":"0.06","week_end":"2023-08-26"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.53","percent_visits_covid":"2.41","percent_visits_influenza":"0.18","percent_visits_rsv":"0.06","week_end":"2023-09-02"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.25","percent_visits_covid":"2.25","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.58","percent_visits_covid":"2.54","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Logan","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.13","percent_visits_covid":"2.01","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-09-23"}
-,{"county":"Logan","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.86","percent_visits_covid":"1.63","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-09-30"}
-,{"county":"Logan","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.68","percent_visits_covid":"1.56","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-10-07"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.54","percent_visits_covid":"1.39","percent_visits_influenza":"0.11","percent_visits_rsv":"0.04","week_end":"2023-10-14"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.9","percent_visits_covid":"1.52","percent_visits_influenza":"0.27","percent_visits_rsv":"0.16","week_end":"2023-10-21"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.78","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.17","percent_visits_influenza":"0.17","percent_visits_rsv":"0.25","week_end":"2023-11-04"}
-,{"county":"Logan","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.18","percent_visits_covid":"1.72","percent_visits_influenza":"0.27","percent_visits_rsv":"0.19","week_end":"2023-11-11"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.41","percent_visits_covid":"1.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.42","week_end":"2023-11-18"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.4","percent_visits_covid":"2.09","percent_visits_influenza":"0.53","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Logan","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.73","percent_visits_covid":"1.85","percent_visits_influenza":"0.64","percent_visits_rsv":"1.28","week_end":"2023-12-02"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Lonoke","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Lonoke","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Lonoke","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.61","percent_visits_covid":"0.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.25","week_end":"2022-10-08"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.21","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.65","week_end":"2022-10-15"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.64","percent_visits_covid":"0.6","percent_visits_influenza":"0.55","percent_visits_rsv":"0.5","week_end":"2022-10-22"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.69","percent_visits_covid":"0.56","percent_visits_influenza":"0.67","percent_visits_rsv":"0.51","week_end":"2022-10-29"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.46","percent_visits_covid":"0.8","percent_visits_influenza":"1.28","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.31","percent_visits_covid":"0.47","percent_visits_influenza":"2.55","percent_visits_rsv":"0.33","week_end":"2022-11-12"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"5.75","percent_visits_covid":"0.38","percent_visits_influenza":"5.04","percent_visits_rsv":"0.38","week_end":"2022-11-19"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"9.57","percent_visits_covid":"1.25","percent_visits_influenza":"8.06","percent_visits_rsv":"0.26","week_end":"2022-11-26"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"7.84","percent_visits_covid":"1.37","percent_visits_influenza":"6.19","percent_visits_rsv":"0.35","week_end":"2022-12-03"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"5.85","percent_visits_covid":"1.51","percent_visits_influenza":"4.3","percent_visits_rsv":"0.08","week_end":"2022-12-10"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.89","percent_visits_covid":"1.79","percent_visits_influenza":"2.88","percent_visits_rsv":"0.31","week_end":"2022-12-17"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.36","percent_visits_covid":"1.71","percent_visits_influenza":"2.51","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.48","percent_visits_covid":"2.07","percent_visits_influenza":"2.24","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.27","percent_visits_covid":"1.36","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.63","percent_visits_influenza":"0.43","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.19","percent_visits_covid":"1.02","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-01-21"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.92","percent_visits_covid":"1.1","percent_visits_influenza":"0.72","percent_visits_rsv":"0.1","week_end":"2023-01-28"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.37","percent_visits_covid":"1.0","percent_visits_influenza":"0.16","percent_visits_rsv":"0.21","week_end":"2023-02-04"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.68","percent_visits_covid":"0.5","percent_visits_influenza":"0.09","percent_visits_rsv":"0.14","week_end":"2023-02-11"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.63","percent_visits_covid":"0.49","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.25","percent_visits_covid":"0.95","percent_visits_influenza":"0.13","percent_visits_rsv":"0.22","week_end":"2023-02-25"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.05","percent_visits_covid":"1.01","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.62","percent_visits_covid":"0.57","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.31","percent_visits_covid":"0.18","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.9","percent_visits_covid":"0.63","percent_visits_influenza":"0.22","percent_visits_rsv":"0.04","week_end":"2023-03-25"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.61","percent_visits_covid":"0.48","percent_visits_influenza":"0.04","percent_visits_rsv":"0.09","week_end":"2023-04-01"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.63","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.44","percent_visits_influenza":"0.13","percent_visits_rsv":"0.09","week_end":"2023-04-15"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.33","percent_visits_covid":"0.29","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.45","percent_visits_covid":"0.32","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.47","percent_visits_influenza":"0.04","percent_visits_rsv":"0.13","week_end":"2023-05-06"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.38","percent_visits_covid":"0.21","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.44","percent_visits_covid":"0.31","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.43","percent_visits_covid":"0.26","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-05-27"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.37","percent_visits_covid":"0.17","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.56","percent_visits_covid":"0.38","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-06-10"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.44","percent_visits_covid":"0.31","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.21","percent_visits_covid":"0.13","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.3","percent_visits_covid":"0.09","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.49","percent_visits_covid":"0.29","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.43","percent_visits_covid":"0.3","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.38","percent_visits_covid":"0.33","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.57","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.32","percent_visits_covid":"1.15","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.17","percent_visits_covid":"1.08","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.83","percent_visits_covid":"2.59","percent_visits_influenza":"0.24","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.17","percent_visits_covid":"2.12","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.48","percent_visits_covid":"3.41","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.46","percent_visits_covid":"1.83","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.58","percent_visits_covid":"1.5","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.37","percent_visits_covid":"1.07","percent_visits_influenza":"0.15","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.82","percent_visits_covid":"1.09","percent_visits_influenza":"0.73","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.56","percent_visits_covid":"0.86","percent_visits_influenza":"0.55","percent_visits_rsv":"0.16","week_end":"2023-10-14"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.0","percent_visits_covid":"1.52","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.51","percent_visits_covid":"0.93","percent_visits_influenza":"0.43","percent_visits_rsv":"0.22","week_end":"2023-10-28"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.76","percent_visits_covid":"0.8","percent_visits_influenza":"0.32","percent_visits_rsv":"0.64","week_end":"2023-11-04"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.97","percent_visits_covid":"1.09","percent_visits_influenza":"0.58","percent_visits_rsv":"0.29","week_end":"2023-11-11"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.13","percent_visits_covid":"1.03","percent_visits_influenza":"0.37","percent_visits_rsv":"0.81","week_end":"2023-11-18"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.74","percent_visits_covid":"1.57","percent_visits_influenza":"0.39","percent_visits_rsv":"0.78","week_end":"2023-11-25"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.07","percent_visits_covid":"1.69","percent_visits_influenza":"0.38","percent_visits_rsv":"1.0","week_end":"2023-12-02"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-22"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-29"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-25"}
-,{"county":"Marion","ed_trends_covid":"Sparse","ed_trends_influenza":"Sparse","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Baxter, AR - Marion, AR","hsa_counties":"Baxter, Marion","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.6","percent_visits_covid":"0.78","percent_visits_influenza":"0.26","percent_visits_rsv":"1.56","week_end":"2022-10-01"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"0.24","percent_visits_rsv":"1.95","week_end":"2022-10-08"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.66","percent_visits_covid":"1.65","percent_visits_influenza":"0.47","percent_visits_rsv":"3.54","week_end":"2022-10-15"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.28","percent_visits_covid":"1.01","percent_visits_influenza":"2.52","percent_visits_rsv":"0.76","week_end":"2022-10-22"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"8.43","percent_visits_covid":"1.45","percent_visits_influenza":"3.86","percent_visits_rsv":"4.34","week_end":"2022-10-29"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.29","percent_visits_covid":"1.33","percent_visits_influenza":"7.08","percent_visits_rsv":"0.88","week_end":"2022-11-05"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"15.5","percent_visits_covid":"0.83","percent_visits_influenza":"11.78","percent_visits_rsv":"3.51","week_end":"2022-11-12"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"21.99","percent_visits_covid":"0.83","percent_visits_influenza":"19.29","percent_visits_rsv":"1.87","week_end":"2022-11-19"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"26.37","percent_visits_covid":"1.13","percent_visits_influenza":"25.24","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"22.03","percent_visits_covid":"3.12","percent_visits_influenza":"18.91","percent_visits_rsv":"0.39","week_end":"2022-12-03"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"12.65","percent_visits_covid":"2.45","percent_visits_influenza":"10.2","percent_visits_rsv":"0.61","week_end":"2022-12-10"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.95","percent_visits_covid":"4.59","percent_visits_influenza":"5.61","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.51","percent_visits_covid":"2.61","percent_visits_influenza":"2.9","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.69","percent_visits_covid":"2.51","percent_visits_influenza":"2.96","percent_visits_rsv":"0.23","week_end":"2022-12-31"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.98","percent_visits_covid":"4.19","percent_visits_influenza":"2.79","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.91","percent_visits_covid":"1.45","percent_visits_influenza":"1.45","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.34","percent_visits_covid":"1.95","percent_visits_influenza":"1.11","percent_visits_rsv":"0.28","week_end":"2023-01-21"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.82","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.94","percent_visits_covid":"1.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.89","percent_visits_covid":"2.75","percent_visits_influenza":"2.14","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.44","percent_visits_covid":"4.17","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.39","percent_visits_covid":"2.82","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.48","percent_visits_covid":"0.48","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.76","percent_visits_covid":"3.49","percent_visits_influenza":"1.9","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.97","percent_visits_covid":"1.41","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.95","percent_visits_covid":"0.32","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.96","percent_visits_covid":"0.32","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.05","percent_visits_covid":"2.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.54","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.95","percent_visits_covid":"5.68","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.33","percent_visits_covid":"2.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.43","percent_visits_covid":"1.15","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.87","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.61","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.9","percent_visits_covid":"1.09","percent_visits_influenza":"0.54","percent_visits_rsv":"0.27","week_end":"2023-06-03"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.3","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.3","week_end":"2023-06-10"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.29","percent_visits_covid":"0.0","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.53","percent_visits_covid":"1.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.28","percent_visits_covid":"0.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.26","percent_visits_covid":"1.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.39","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.25","percent_visits_covid":"0.93","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.85","percent_visits_covid":"3.25","percent_visits_influenza":"0.59","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Miller","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.37","percent_visits_covid":"3.83","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-09-02"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.62","percent_visits_covid":"3.41","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.9","percent_visits_covid":"3.46","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.02","percent_visits_covid":"2.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Miller","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.17","percent_visits_covid":"1.9","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.99","percent_visits_covid":"1.99","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.77","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.38","percent_visits_covid":"1.79","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.63","percent_visits_covid":"0.82","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"14.57","percent_visits_covid":"1.01","percent_visits_influenza":"13.57","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.45","percent_visits_covid":"1.72","percent_visits_influenza":"1.72","percent_visits_rsv":"0.34","week_end":"2023-11-04"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.24","percent_visits_covid":"2.39","percent_visits_influenza":"1.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.67","percent_visits_covid":"2.12","percent_visits_influenza":"2.73","percent_visits_rsv":"1.82","week_end":"2023-11-18"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.49","percent_visits_covid":"1.22","percent_visits_influenza":"2.44","percent_visits_rsv":"1.83","week_end":"2023-11-25"}
-,{"county":"Miller","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.99","percent_visits_covid":"1.23","percent_visits_influenza":"0.61","percent_visits_rsv":"2.15","week_end":"2023-12-02"}
-,{"county":"Mississippi","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"3.34","percent_visits_covid":"1.03","percent_visits_influenza":"0.77","percent_visits_rsv":"1.54","week_end":"2022-10-01"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"6.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.49","percent_visits_rsv":"5.17","week_end":"2022-10-08"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"4.91","percent_visits_covid":"0.47","percent_visits_influenza":"2.34","percent_visits_rsv":"2.1","week_end":"2022-10-15"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"4.05","percent_visits_covid":"0.76","percent_visits_influenza":"1.27","percent_visits_rsv":"2.28","week_end":"2022-10-22"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"9.82","percent_visits_covid":"1.37","percent_visits_influenza":"5.02","percent_visits_rsv":"3.88","week_end":"2022-10-29"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"10.45","percent_visits_covid":"0.45","percent_visits_influenza":"7.73","percent_visits_rsv":"2.27","week_end":"2022-11-05"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"11.03","percent_visits_covid":"0.76","percent_visits_influenza":"10.08","percent_visits_rsv":"0.38","week_end":"2022-11-12"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"15.84","percent_visits_covid":"1.58","percent_visits_influenza":"13.66","percent_visits_rsv":"0.79","week_end":"2022-11-19"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"17.89","percent_visits_covid":"1.29","percent_visits_influenza":"16.59","percent_visits_rsv":"0.43","week_end":"2022-11-26"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"11.23","percent_visits_covid":"2.54","percent_visits_influenza":"8.26","percent_visits_rsv":"0.64","week_end":"2022-12-03"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"6.0","percent_visits_covid":"1.0","percent_visits_influenza":"4.75","percent_visits_rsv":"0.25","week_end":"2022-12-10"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"7.03","percent_visits_covid":"0.78","percent_visits_influenza":"6.25","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"4.75","percent_visits_covid":"1.78","percent_visits_influenza":"2.67","percent_visits_rsv":"0.3","week_end":"2022-12-24"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"5.0","percent_visits_covid":"2.11","percent_visits_influenza":"2.89","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"2.73","percent_visits_covid":"1.99","percent_visits_influenza":"0.99","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"2.84","percent_visits_covid":"1.8","percent_visits_influenza":"1.03","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"4.24","percent_visits_covid":"2.92","percent_visits_influenza":"1.33","percent_visits_rsv":"0.27","week_end":"2023-01-21"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"3.38","percent_visits_covid":"1.82","percent_visits_influenza":"1.04","percent_visits_rsv":"0.52","week_end":"2023-01-28"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"3.22","percent_visits_covid":"2.34","percent_visits_influenza":"0.88","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"1.27","percent_visits_covid":"1.01","percent_visits_influenza":"0.25","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"1.2","percent_visits_covid":"0.3","percent_visits_influenza":"0.9","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"3.9","percent_visits_covid":"2.23","percent_visits_influenza":"1.39","percent_visits_rsv":"0.28","week_end":"2023-02-25"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"2.87","percent_visits_covid":"1.72","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"1.97","percent_visits_covid":"0.85","percent_visits_influenza":"0.85","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"1.06","percent_visits_covid":"0.53","percent_visits_influenza":"0.53","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"2.66","percent_visits_covid":"1.18","percent_visits_influenza":"0.89","percent_visits_rsv":"0.59","week_end":"2023-03-25"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"1.2","percent_visits_covid":"1.2","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.98","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.98","week_end":"2023-04-22"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.42","percent_visits_covid":"0.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"1.5","percent_visits_covid":"1.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.38","week_end":"2023-05-06"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.39","percent_visits_covid":"0.0","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.42","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.42","week_end":"2023-05-27"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.87","percent_visits_covid":"0.43","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.41","percent_visits_covid":"0.0","percent_visits_influenza":"0.41","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.43","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.43","week_end":"2023-07-22"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"2.91","percent_visits_covid":"1.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.97","week_end":"2023-07-29"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.45","percent_visits_covid":"0.0","percent_visits_influenza":"0.45","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"5.41","percent_visits_covid":"5.07","percent_visits_influenza":"0.34","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"5.76","percent_visits_covid":"5.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"5.02","percent_visits_covid":"3.86","percent_visits_influenza":"0.77","percent_visits_rsv":"0.39","week_end":"2023-09-09"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"4.27","percent_visits_covid":"4.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Mississippi","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"3.31","percent_visits_covid":"2.89","percent_visits_influenza":"0.41","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Mississippi","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"1.42","percent_visits_covid":"1.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Mississippi","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"2.94","percent_visits_covid":"2.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Mississippi","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"3.72","percent_visits_covid":"2.89","percent_visits_influenza":"0.83","percent_visits_rsv":"0.41","week_end":"2023-10-14"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"2.16","percent_visits_covid":"0.87","percent_visits_influenza":"0.43","percent_visits_rsv":"0.87","week_end":"2023-10-21"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"0.73","percent_visits_covid":"0.0","percent_visits_influenza":"0.37","percent_visits_rsv":"0.37","week_end":"2023-10-28"}
-,{"county":"Mississippi","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"3.23","percent_visits_covid":"1.61","percent_visits_influenza":"1.21","percent_visits_rsv":"0.4","week_end":"2023-11-04"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"3.35","percent_visits_covid":"1.26","percent_visits_influenza":"2.09","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"8.03","percent_visits_covid":"1.61","percent_visits_influenza":"4.82","percent_visits_rsv":"1.61","week_end":"2023-11-18"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"6.38","percent_visits_covid":"3.4","percent_visits_influenza":"2.55","percent_visits_rsv":"0.43","week_end":"2023-11-25"}
-,{"county":"Mississippi","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Mississippi, AR","hsa_counties":"Mississippi","percent_visits_combined":"7.76","percent_visits_covid":"3.27","percent_visits_influenza":"2.45","percent_visits_rsv":"2.04","week_end":"2023-12-02"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.9","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"2.17","week_end":"2022-10-08"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.55","percent_visits_covid":"1.18","percent_visits_influenza":"0.59","percent_visits_rsv":"1.78","week_end":"2022-10-15"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.89","percent_visits_covid":"1.73","percent_visits_influenza":"0.0","percent_visits_rsv":"1.16","week_end":"2022-10-22"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"5.56","percent_visits_covid":"2.08","percent_visits_influenza":"1.39","percent_visits_rsv":"2.08","week_end":"2022-10-29"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.31","percent_visits_covid":"2.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.66","week_end":"2022-11-05"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"5.88","percent_visits_covid":"1.18","percent_visits_influenza":"4.12","percent_visits_rsv":"0.59","week_end":"2022-11-12"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"8.33","percent_visits_covid":"0.6","percent_visits_influenza":"6.55","percent_visits_rsv":"1.19","week_end":"2022-11-19"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"12.57","percent_visits_covid":"2.09","percent_visits_influenza":"9.95","percent_visits_rsv":"0.52","week_end":"2022-11-26"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"12.14","percent_visits_covid":"2.89","percent_visits_influenza":"9.25","percent_visits_rsv":"0.58","week_end":"2022-12-03"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"15.69","percent_visits_covid":"5.88","percent_visits_influenza":"9.8","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"8.82","percent_visits_covid":"1.18","percent_visits_influenza":"7.65","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"11.29","percent_visits_covid":"3.23","percent_visits_influenza":"7.26","percent_visits_rsv":"0.81","week_end":"2022-12-24"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"7.89","percent_visits_covid":"1.97","percent_visits_influenza":"6.58","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"9.79","percent_visits_covid":"4.2","percent_visits_influenza":"5.59","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.81","percent_visits_covid":"0.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.57","percent_visits_covid":"1.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.26","percent_visits_covid":"2.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.81","percent_visits_covid":"0.0","percent_visits_influenza":"0.81","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.75","percent_visits_covid":"0.75","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.21","percent_visits_covid":"2.21","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.7","percent_visits_covid":"2.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.32","percent_visits_covid":"1.32","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.42","percent_visits_covid":"1.61","percent_visits_influenza":"0.81","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"10.87","percent_visits_covid":"4.89","percent_visits_influenza":"6.52","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.97","percent_visits_covid":"1.59","percent_visits_influenza":"2.38","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.43","percent_visits_covid":"1.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.68","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.44","percent_visits_covid":"1.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.68","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.67","percent_visits_covid":"1.67","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.96","percent_visits_covid":"0.0","percent_visits_influenza":"1.96","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.65","percent_visits_covid":"0.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.84","percent_visits_covid":"2.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.71","week_end":"2023-08-05"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.8","percent_visits_covid":"2.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.65","percent_visits_covid":"3.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.07","percent_visits_covid":"3.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"4.46","percent_visits_covid":"4.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.64","percent_visits_covid":"3.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.96","percent_visits_covid":"1.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.41","percent_visits_covid":"3.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.63","percent_visits_covid":"1.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.78","percent_visits_covid":"2.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.37","percent_visits_covid":"1.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"0.66","percent_visits_covid":"0.66","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.8","percent_visits_covid":"2.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.96","percent_visits_covid":"2.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"3.45","percent_visits_covid":"1.38","percent_visits_influenza":"1.38","percent_visits_rsv":"0.69","week_end":"2023-11-18"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"2.96","percent_visits_covid":"1.48","percent_visits_influenza":"0.0","percent_visits_rsv":"1.48","week_end":"2023-11-25"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Arkansas, AR - Monroe, AR","hsa_counties":"Arkansas, Monroe","percent_visits_combined":"1.23","percent_visits_covid":"1.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-12-02"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.0","percent_visits_rsv":"0.33","week_end":"2022-10-08"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.17","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.23","week_end":"2022-10-15"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.41","percent_visits_covid":"0.64","percent_visits_influenza":"0.35","percent_visits_rsv":"0.41","week_end":"2022-10-22"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.25","percent_visits_covid":"0.73","percent_visits_influenza":"0.91","percent_visits_rsv":"0.61","week_end":"2022-10-29"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.72","percent_visits_covid":"0.68","percent_visits_influenza":"1.67","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.64","percent_visits_covid":"0.87","percent_visits_influenza":"3.48","percent_visits_rsv":"0.29","week_end":"2022-11-12"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"6.58","percent_visits_covid":"0.77","percent_visits_influenza":"5.65","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"10.75","percent_visits_covid":"1.29","percent_visits_influenza":"8.97","percent_visits_rsv":"0.55","week_end":"2022-11-26"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"7.59","percent_visits_covid":"1.44","percent_visits_influenza":"6.14","percent_visits_rsv":"0.1","week_end":"2022-12-03"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"5.71","percent_visits_covid":"1.31","percent_visits_influenza":"4.34","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.43","percent_visits_covid":"2.01","percent_visits_influenza":"2.24","percent_visits_rsv":"0.18","week_end":"2022-12-17"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.57","percent_visits_covid":"1.25","percent_visits_influenza":"1.32","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.91","percent_visits_covid":"2.94","percent_visits_influenza":"1.91","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"3.07","percent_visits_covid":"2.3","percent_visits_influenza":"0.77","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.65","percent_visits_covid":"1.52","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"0.96","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-01-28"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.25","percent_visits_covid":"0.84","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.23","percent_visits_covid":"1.04","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.09","percent_visits_covid":"0.9","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-18"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.63","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.59","percent_visits_covid":"0.53","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.73","percent_visits_covid":"0.61","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-03-18"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.03","percent_visits_covid":"0.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-03-25"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.44","percent_visits_covid":"1.14","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.99","percent_visits_covid":"0.93","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.86","percent_visits_covid":"0.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.42","percent_visits_covid":"0.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.65","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-05-06"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.5","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-05-20"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.07","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.38","percent_visits_covid":"0.31","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.46","percent_visits_covid":"0.4","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.31","percent_visits_covid":"1.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.95","percent_visits_covid":"0.95","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.85","percent_visits_covid":"1.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Montgomery","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"10.22","percent_visits_covid":"2.69","percent_visits_influenza":"8.06","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.48","percent_visits_covid":"2.48","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.81","percent_visits_covid":"2.76","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.7","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.1","percent_visits_covid":"1.05","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Montgomery","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.11","percent_visits_covid":"1.11","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-10-14"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.93","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-10-21"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.87","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-10-28"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.7","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-11-04"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.38","percent_visits_covid":"1.43","percent_visits_influenza":"0.48","percent_visits_rsv":"0.48","week_end":"2023-11-11"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.33","percent_visits_covid":"0.78","percent_visits_influenza":"0.36","percent_visits_rsv":"1.19","week_end":"2023-11-18"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.1","percent_visits_covid":"1.84","percent_visits_influenza":"0.53","percent_visits_rsv":"1.9","week_end":"2023-11-25"}
-,{"county":"Montgomery","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.95","percent_visits_covid":"0.88","percent_visits_influenza":"0.53","percent_visits_rsv":"1.53","week_end":"2023-12-02"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.6","percent_visits_covid":"0.78","percent_visits_influenza":"0.26","percent_visits_rsv":"1.56","week_end":"2022-10-01"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"0.24","percent_visits_rsv":"1.95","week_end":"2022-10-08"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.66","percent_visits_covid":"1.65","percent_visits_influenza":"0.47","percent_visits_rsv":"3.54","week_end":"2022-10-15"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.28","percent_visits_covid":"1.01","percent_visits_influenza":"2.52","percent_visits_rsv":"0.76","week_end":"2022-10-22"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"8.43","percent_visits_covid":"1.45","percent_visits_influenza":"3.86","percent_visits_rsv":"4.34","week_end":"2022-10-29"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.29","percent_visits_covid":"1.33","percent_visits_influenza":"7.08","percent_visits_rsv":"0.88","week_end":"2022-11-05"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"15.5","percent_visits_covid":"0.83","percent_visits_influenza":"11.78","percent_visits_rsv":"3.51","week_end":"2022-11-12"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"21.99","percent_visits_covid":"0.83","percent_visits_influenza":"19.29","percent_visits_rsv":"1.87","week_end":"2022-11-19"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"26.37","percent_visits_covid":"1.13","percent_visits_influenza":"25.24","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"22.03","percent_visits_covid":"3.12","percent_visits_influenza":"18.91","percent_visits_rsv":"0.39","week_end":"2022-12-03"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"12.65","percent_visits_covid":"2.45","percent_visits_influenza":"10.2","percent_visits_rsv":"0.61","week_end":"2022-12-10"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.95","percent_visits_covid":"4.59","percent_visits_influenza":"5.61","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.51","percent_visits_covid":"2.61","percent_visits_influenza":"2.9","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.69","percent_visits_covid":"2.51","percent_visits_influenza":"2.96","percent_visits_rsv":"0.23","week_end":"2022-12-31"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.98","percent_visits_covid":"4.19","percent_visits_influenza":"2.79","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.91","percent_visits_covid":"1.45","percent_visits_influenza":"1.45","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.34","percent_visits_covid":"1.95","percent_visits_influenza":"1.11","percent_visits_rsv":"0.28","week_end":"2023-01-21"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.82","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.94","percent_visits_covid":"1.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.89","percent_visits_covid":"2.75","percent_visits_influenza":"2.14","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.44","percent_visits_covid":"4.17","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.39","percent_visits_covid":"2.82","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.76","percent_visits_covid":"3.49","percent_visits_influenza":"1.9","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.97","percent_visits_covid":"1.41","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.95","percent_visits_covid":"0.32","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.96","percent_visits_covid":"0.32","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.05","percent_visits_covid":"2.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.54","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.95","percent_visits_covid":"5.68","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.33","percent_visits_covid":"2.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.43","percent_visits_covid":"1.15","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.87","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.61","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.9","percent_visits_covid":"1.09","percent_visits_influenza":"0.54","percent_visits_rsv":"0.27","week_end":"2023-06-03"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.3","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.3","week_end":"2023-06-10"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.29","percent_visits_covid":"0.0","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.53","percent_visits_covid":"1.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.28","percent_visits_covid":"0.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.26","percent_visits_covid":"1.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.39","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.25","percent_visits_covid":"0.93","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.85","percent_visits_covid":"3.25","percent_visits_influenza":"0.59","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Nevada","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.37","percent_visits_covid":"3.83","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-09-02"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.62","percent_visits_covid":"3.41","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.9","percent_visits_covid":"3.46","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.02","percent_visits_covid":"2.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Nevada","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.17","percent_visits_covid":"1.9","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.99","percent_visits_covid":"1.99","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.77","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.38","percent_visits_covid":"1.79","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.63","percent_visits_covid":"0.82","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.45","percent_visits_covid":"1.72","percent_visits_influenza":"1.72","percent_visits_rsv":"0.34","week_end":"2023-11-04"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"6.35","percent_visits_covid":"2.65","percent_visits_influenza":"3.7","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.24","percent_visits_covid":"2.39","percent_visits_influenza":"1.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.67","percent_visits_covid":"2.12","percent_visits_influenza":"2.73","percent_visits_rsv":"1.82","week_end":"2023-11-18"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.49","percent_visits_covid":"1.22","percent_visits_influenza":"2.44","percent_visits_rsv":"1.83","week_end":"2023-11-25"}
-,{"county":"Nevada","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.99","percent_visits_covid":"1.23","percent_visits_influenza":"0.61","percent_visits_rsv":"2.15","week_end":"2023-12-02"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2022-10-01"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.88","percent_visits_covid":"0.15","percent_visits_influenza":"0.15","percent_visits_rsv":"0.59","week_end":"2022-10-08"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.29","percent_visits_covid":"1.29","percent_visits_influenza":"0.29","percent_visits_rsv":"0.71","week_end":"2022-10-15"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.54","percent_visits_covid":"0.32","percent_visits_influenza":"1.9","percent_visits_rsv":"0.32","week_end":"2022-10-22"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.12","percent_visits_covid":"0.47","percent_visits_influenza":"2.19","percent_visits_rsv":"0.47","week_end":"2022-10-29"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.88","percent_visits_covid":"0.55","percent_visits_influenza":"2.2","percent_visits_rsv":"0.14","week_end":"2022-11-05"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.62","percent_visits_rsv":"0.27","week_end":"2022-11-12"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.99","percent_visits_covid":"0.28","percent_visits_influenza":"2.28","percent_visits_rsv":"0.43","week_end":"2022-11-19"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.5","percent_visits_covid":"0.4","percent_visits_influenza":"3.84","percent_visits_rsv":"0.26","week_end":"2022-11-26"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.43","percent_visits_covid":"1.07","percent_visits_influenza":"3.22","percent_visits_rsv":"0.13","week_end":"2022-12-03"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.18","percent_visits_covid":"1.5","percent_visits_influenza":"3.27","percent_visits_rsv":"0.41","week_end":"2022-12-10"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.94","percent_visits_covid":"0.56","percent_visits_influenza":"3.38","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.91","percent_visits_covid":"2.13","percent_visits_influenza":"2.13","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.21","percent_visits_covid":"1.31","percent_visits_influenza":"2.47","percent_visits_rsv":"0.44","week_end":"2022-12-31"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.8","percent_visits_covid":"0.78","percent_visits_influenza":"2.02","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.02","percent_visits_covid":"1.96","percent_visits_influenza":"1.06","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.49","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.86","percent_visits_covid":"0.45","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.84","percent_visits_covid":"0.5","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.56","percent_visits_covid":"0.31","percent_visits_influenza":"1.24","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.94","percent_visits_covid":"0.31","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.48","percent_visits_covid":"0.16","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.61","percent_visits_covid":"0.46","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.15","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-03-18"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.16","percent_visits_covid":"0.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.29","percent_visits_covid":"0.15","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.13","percent_visits_covid":"0.99","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.74","percent_visits_covid":"1.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.55","percent_visits_covid":"0.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.26","percent_visits_covid":"0.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.41","percent_visits_covid":"0.27","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.15","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.81","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.71","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-15"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.44","percent_visits_covid":"0.29","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-07-22"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.47","percent_visits_covid":"0.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.9","percent_visits_covid":"0.75","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-08-05"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.55","percent_visits_covid":"2.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.79","percent_visits_covid":"2.79","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.17","percent_visits_covid":"3.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.2","percent_visits_covid":"4.81","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.55","percent_visits_covid":"3.41","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.18","percent_visits_covid":"2.03","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Newton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.27","percent_visits_covid":"1.13","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.5","percent_visits_covid":"1.83","percent_visits_influenza":"0.33","percent_visits_rsv":"0.33","week_end":"2023-10-07"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.54","percent_visits_covid":"1.94","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.07","percent_visits_covid":"0.69","percent_visits_influenza":"0.83","percent_visits_rsv":"0.55","week_end":"2023-10-21"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.76","percent_visits_covid":"2.79","percent_visits_influenza":"0.42","percent_visits_rsv":"0.56","week_end":"2023-10-28"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.83","percent_visits_covid":"2.38","percent_visits_influenza":"0.15","percent_visits_rsv":"0.3","week_end":"2023-11-04"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.44","percent_visits_covid":"0.76","percent_visits_influenza":"1.37","percent_visits_rsv":"0.31","week_end":"2023-11-11"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.09","percent_visits_covid":"2.36","percent_visits_influenza":"0.31","percent_visits_rsv":"1.42","week_end":"2023-11-18"}
-,{"county":"Newton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.34","percent_visits_covid":"3.66","percent_visits_influenza":"0.46","percent_visits_rsv":"1.22","week_end":"2023-11-25"}
-,{"county":"Newton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.08","percent_visits_covid":"3.23","percent_visits_influenza":"0.62","percent_visits_rsv":"1.23","week_end":"2023-12-02"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.89","percent_visits_covid":"2.72","percent_visits_influenza":"0.0","percent_visits_rsv":"1.17","week_end":"2022-10-01"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.96","percent_visits_covid":"1.57","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.57","percent_visits_covid":"1.18","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.69","percent_visits_covid":"0.84","percent_visits_influenza":"0.42","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.09","percent_visits_covid":"0.37","percent_visits_influenza":"1.12","percent_visits_rsv":"2.6","week_end":"2022-10-29"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"6.59","percent_visits_covid":"0.37","percent_visits_influenza":"3.66","percent_visits_rsv":"2.56","week_end":"2022-11-05"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"10.84","percent_visits_covid":"0.8","percent_visits_influenza":"5.22","percent_visits_rsv":"4.82","week_end":"2022-11-12"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"13.67","percent_visits_covid":"2.16","percent_visits_influenza":"10.43","percent_visits_rsv":"1.8","week_end":"2022-11-19"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"12.08","percent_visits_covid":"1.69","percent_visits_influenza":"10.11","percent_visits_rsv":"0.84","week_end":"2022-11-26"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"11.69","percent_visits_covid":"1.54","percent_visits_influenza":"9.54","percent_visits_rsv":"0.92","week_end":"2022-12-03"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"8.51","percent_visits_covid":"1.77","percent_visits_influenza":"5.32","percent_visits_rsv":"1.42","week_end":"2022-12-10"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"6.43","percent_visits_covid":"1.07","percent_visits_influenza":"5.36","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"7.56","percent_visits_covid":"3.36","percent_visits_influenza":"4.2","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"5.84","percent_visits_covid":"3.44","percent_visits_influenza":"2.41","percent_visits_rsv":"0.69","week_end":"2022-12-31"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"6.1","percent_visits_covid":"4.47","percent_visits_influenza":"1.22","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.28","percent_visits_covid":"1.95","percent_visits_influenza":"1.95","percent_visits_rsv":"0.39","week_end":"2023-01-14"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.08","percent_visits_covid":"2.69","percent_visits_influenza":"0.77","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.77","percent_visits_covid":"1.58","percent_visits_influenza":"1.58","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.1","percent_visits_covid":"2.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.44","week_end":"2023-02-04"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.27","percent_visits_covid":"1.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.22","percent_visits_covid":"0.74","percent_visits_influenza":"0.74","percent_visits_rsv":"0.74","week_end":"2023-02-18"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.14","percent_visits_covid":"1.78","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.75","percent_visits_covid":"0.37","percent_visits_influenza":"0.37","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.5","percent_visits_covid":"0.38","percent_visits_influenza":"1.13","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.48","percent_visits_covid":"0.37","percent_visits_influenza":"0.74","percent_visits_rsv":"0.37","week_end":"2023-03-18"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.82","percent_visits_covid":"0.73","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.07","percent_visits_covid":"1.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.26","percent_visits_covid":"1.13","percent_visits_influenza":"0.75","percent_visits_rsv":"0.38","week_end":"2023-04-08"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.51","percent_visits_covid":"3.01","percent_visits_influenza":"1.13","percent_visits_rsv":"0.38","week_end":"2023-04-15"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.74","percent_visits_covid":"0.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.27","percent_visits_covid":"1.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.82","percent_visits_covid":"2.67","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.44","percent_visits_covid":"1.08","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.64","percent_visits_covid":"3.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.86","percent_visits_covid":"2.04","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.11","percent_visits_covid":"2.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.4","percent_visits_covid":"1.89","percent_visits_influenza":"1.51","percent_visits_rsv":"0.38","week_end":"2023-06-10"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.53","percent_visits_covid":"0.76","percent_visits_influenza":"0.76","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.56","percent_visits_covid":"1.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.44","percent_visits_covid":"1.08","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.97","percent_visits_covid":"2.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.22","percent_visits_covid":"1.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.26","percent_visits_covid":"1.88","percent_visits_influenza":"0.75","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.75","percent_visits_covid":"2.41","percent_visits_influenza":"0.34","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.14","percent_visits_covid":"1.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.95","percent_visits_covid":"1.56","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.63","percent_visits_covid":"4.27","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.74","percent_visits_covid":"4.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.63","percent_visits_covid":"3.86","percent_visits_influenza":"0.77","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"3.72","percent_visits_covid":"3.35","percent_visits_influenza":"0.37","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"5.7","percent_visits_covid":"5.32","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.4","percent_visits_covid":"0.0","percent_visits_influenza":"0.4","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Ouachita","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.9","percent_visits_covid":"0.0","percent_visits_influenza":"0.9","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Ouachita","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"2.33","percent_visits_covid":"1.17","percent_visits_influenza":"1.17","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"0.43","percent_visits_covid":"0.0","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"1.65","percent_visits_covid":"0.83","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"4.02","percent_visits_covid":"2.41","percent_visits_influenza":"1.61","percent_visits_rsv":"0.4","week_end":"2023-11-18"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"6.25","percent_visits_covid":"3.57","percent_visits_influenza":"1.34","percent_visits_rsv":"1.34","week_end":"2023-11-25"}
-,{"county":"Ouachita","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Ouachita, AR - Dallas, AR","hsa_counties":"Dallas, Ouachita","percent_visits_combined":"7.97","percent_visits_covid":"3.59","percent_visits_influenza":"1.2","percent_visits_rsv":"3.19","week_end":"2023-12-02"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Perry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Perry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Perry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.86","percent_visits_covid":"2.29","percent_visits_influenza":"0.0","percent_visits_rsv":"0.57","week_end":"2022-10-01"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.72","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"1.15","week_end":"2022-10-08"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"3.83","percent_visits_covid":"3.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.55","week_end":"2022-10-15"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"4.44","percent_visits_covid":"1.11","percent_visits_influenza":"2.22","percent_visits_rsv":"1.11","week_end":"2022-10-22"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"9.02","percent_visits_covid":"3.69","percent_visits_influenza":"5.74","percent_visits_rsv":"0.0","week_end":"2022-10-29"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"22.27","percent_visits_covid":"1.36","percent_visits_influenza":"19.55","percent_visits_rsv":"1.36","week_end":"2022-11-05"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"21.52","percent_visits_covid":"2.95","percent_visits_influenza":"18.14","percent_visits_rsv":"0.42","week_end":"2022-11-12"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"19.09","percent_visits_covid":"1.36","percent_visits_influenza":"17.73","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"7.36","percent_visits_covid":"6.13","percent_visits_influenza":"1.23","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"4.97","percent_visits_covid":"4.42","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"3.47","percent_visits_covid":"2.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.58","week_end":"2023-01-07"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.84","percent_visits_covid":"2.27","percent_visits_influenza":"0.57","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.58","percent_visits_covid":"2.06","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.33","percent_visits_covid":"1.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.58","week_end":"2023-01-28"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.41","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.7","week_end":"2023-02-04"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.6","percent_visits_covid":"0.65","percent_visits_influenza":"0.65","percent_visits_rsv":"1.3","week_end":"2023-02-11"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.64","percent_visits_covid":"0.0","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.33","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.55","percent_visits_covid":"0.0","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.1","percent_visits_covid":"0.7","percent_visits_influenza":"1.4","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.34","percent_visits_covid":"0.67","percent_visits_influenza":"0.67","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.29","percent_visits_covid":"1.14","percent_visits_influenza":"0.57","percent_visits_rsv":"0.57","week_end":"2023-04-08"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.3","percent_visits_covid":"0.65","percent_visits_influenza":"0.65","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.59","percent_visits_covid":"1.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.06","percent_visits_covid":"1.06","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.54","percent_visits_covid":"0.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.52","percent_visits_covid":"0.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.44","percent_visits_covid":"0.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.58","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.24","percent_visits_covid":"1.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Phillips","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Phillips","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.08","percent_visits_covid":"1.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Phillips","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.66","percent_visits_covid":"0.66","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Phillips","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.14","percent_visits_covid":"1.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Phillips","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.15","percent_visits_covid":"1.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Phillips","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"3.18","percent_visits_covid":"2.55","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Phillips","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"3.41","percent_visits_covid":"3.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.79","percent_visits_covid":"2.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.47","week_end":"2023-08-26"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"3.93","percent_visits_covid":"3.93","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"4.23","percent_visits_covid":"4.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.69","percent_visits_covid":"1.69","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"3.05","percent_visits_covid":"3.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.89","percent_visits_covid":"2.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.12","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.56","week_end":"2023-10-07"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.56","percent_visits_covid":"0.0","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Phillips","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"1.02","percent_visits_covid":"0.51","percent_visits_influenza":"0.0","percent_visits_rsv":"0.51","week_end":"2023-10-28"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.68","percent_visits_covid":"0.67","percent_visits_influenza":"0.0","percent_visits_rsv":"2.01","week_end":"2023-11-04"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"3.02","percent_visits_covid":"0.5","percent_visits_influenza":"0.0","percent_visits_rsv":"2.51","week_end":"2023-11-11"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"2.61","percent_visits_covid":"0.65","percent_visits_influenza":"0.0","percent_visits_rsv":"1.96","week_end":"2023-11-18"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"4.82","percent_visits_covid":"1.2","percent_visits_influenza":"0.6","percent_visits_rsv":"3.01","week_end":"2023-11-25"}
-,{"county":"Phillips","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Phillips, AR","hsa_counties":"Phillips","percent_visits_combined":"6.42","percent_visits_covid":"1.07","percent_visits_influenza":"0.53","percent_visits_rsv":"4.81","week_end":"2023-12-02"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.16","percent_visits_covid":"1.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.0","percent_visits_rsv":"0.33","week_end":"2022-10-08"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.17","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.23","week_end":"2022-10-15"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.41","percent_visits_covid":"0.64","percent_visits_influenza":"0.35","percent_visits_rsv":"0.41","week_end":"2022-10-22"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.25","percent_visits_covid":"0.73","percent_visits_influenza":"0.91","percent_visits_rsv":"0.61","week_end":"2022-10-29"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.72","percent_visits_covid":"0.68","percent_visits_influenza":"1.67","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.64","percent_visits_covid":"0.87","percent_visits_influenza":"3.48","percent_visits_rsv":"0.29","week_end":"2022-11-12"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"6.58","percent_visits_covid":"0.77","percent_visits_influenza":"5.65","percent_visits_rsv":"0.22","week_end":"2022-11-19"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"10.75","percent_visits_covid":"1.29","percent_visits_influenza":"8.97","percent_visits_rsv":"0.55","week_end":"2022-11-26"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"7.59","percent_visits_covid":"1.44","percent_visits_influenza":"6.14","percent_visits_rsv":"0.1","week_end":"2022-12-03"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"5.71","percent_visits_covid":"1.31","percent_visits_influenza":"4.34","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.43","percent_visits_covid":"2.01","percent_visits_influenza":"2.24","percent_visits_rsv":"0.18","week_end":"2022-12-17"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.57","percent_visits_covid":"1.25","percent_visits_influenza":"1.32","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.91","percent_visits_covid":"2.94","percent_visits_influenza":"1.91","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"3.07","percent_visits_covid":"2.3","percent_visits_influenza":"0.77","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.65","percent_visits_covid":"1.52","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"0.96","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.0","percent_visits_covid":"0.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-01-28"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.25","percent_visits_covid":"0.84","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.23","percent_visits_covid":"1.04","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.09","percent_visits_covid":"0.9","percent_visits_influenza":"0.13","percent_visits_rsv":"0.06","week_end":"2023-02-18"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.63","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.59","percent_visits_covid":"0.53","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.73","percent_visits_covid":"0.61","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-03-18"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.03","percent_visits_covid":"0.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-03-25"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.44","percent_visits_covid":"1.14","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.99","percent_visits_covid":"0.93","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.86","percent_visits_covid":"0.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.42","percent_visits_covid":"0.42","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.65","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-05-06"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.5","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.07","week_end":"2023-05-20"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.07","percent_visits_covid":"0.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.07","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"4.02","percent_visits_covid":"4.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.38","percent_visits_covid":"0.31","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.46","percent_visits_covid":"0.4","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.31","percent_visits_covid":"1.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.95","percent_visits_covid":"0.95","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.85","percent_visits_covid":"1.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Pike","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.48","percent_visits_covid":"2.48","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.81","percent_visits_covid":"2.76","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.7","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.1","percent_visits_covid":"1.05","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Pike","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.11","percent_visits_covid":"1.11","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-10-14"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"1.12","percent_visits_covid":"0.93","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-10-21"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.87","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-10-28"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"0.7","percent_visits_covid":"0.44","percent_visits_influenza":"0.19","percent_visits_rsv":"0.06","week_end":"2023-11-04"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.38","percent_visits_covid":"1.43","percent_visits_influenza":"0.48","percent_visits_rsv":"0.48","week_end":"2023-11-11"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.33","percent_visits_covid":"0.78","percent_visits_influenza":"0.36","percent_visits_rsv":"1.19","week_end":"2023-11-18"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"4.1","percent_visits_covid":"1.84","percent_visits_influenza":"0.53","percent_visits_rsv":"1.9","week_end":"2023-11-25"}
-,{"county":"Pike","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Garland, AR - Hot Spring, AR","hsa_counties":"Clark, Garland, Hot Spring, Montgomery, Pike","percent_visits_combined":"2.95","percent_visits_covid":"0.88","percent_visits_influenza":"0.53","percent_visits_rsv":"1.53","week_end":"2023-12-02"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.01","percent_visits_covid":"1.42","percent_visits_influenza":"0.38","percent_visits_rsv":"1.34","week_end":"2022-10-01"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.3","percent_visits_covid":"1.3","percent_visits_influenza":"0.33","percent_visits_rsv":"1.67","week_end":"2022-10-08"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.59","percent_visits_covid":"1.49","percent_visits_influenza":"1.26","percent_visits_rsv":"2.0","week_end":"2022-10-15"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.94","percent_visits_covid":"1.56","percent_visits_influenza":"0.94","percent_visits_rsv":"1.44","week_end":"2022-10-22"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.81","percent_visits_covid":"1.03","percent_visits_influenza":"2.67","percent_visits_rsv":"1.22","week_end":"2022-10-29"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"6.71","percent_visits_covid":"1.26","percent_visits_influenza":"3.93","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.81","percent_visits_covid":"1.15","percent_visits_influenza":"6.22","percent_visits_rsv":"1.62","week_end":"2022-11-12"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.86","percent_visits_covid":"0.98","percent_visits_influenza":"7.08","percent_visits_rsv":"0.95","week_end":"2022-11-19"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"15.56","percent_visits_covid":"1.52","percent_visits_influenza":"13.26","percent_visits_rsv":"1.18","week_end":"2022-11-26"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"10.5","percent_visits_covid":"1.84","percent_visits_influenza":"8.06","percent_visits_rsv":"1.08","week_end":"2022-12-03"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.98","percent_visits_covid":"2.02","percent_visits_influenza":"6.51","percent_visits_rsv":"0.56","week_end":"2022-12-10"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.44","percent_visits_covid":"2.76","percent_visits_influenza":"4.49","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.07","percent_visits_covid":"3.94","percent_visits_influenza":"2.84","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.77","percent_visits_covid":"4.9","percent_visits_influenza":"2.76","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.9","percent_visits_covid":"3.77","percent_visits_influenza":"2.01","percent_visits_rsv":"0.25","week_end":"2023-01-07"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.98","percent_visits_covid":"3.68","percent_visits_influenza":"0.94","percent_visits_rsv":"0.43","week_end":"2023-01-14"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.14","percent_visits_covid":"2.5","percent_visits_influenza":"0.52","percent_visits_rsv":"0.16","week_end":"2023-01-21"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.17","percent_visits_covid":"2.56","percent_visits_influenza":"0.45","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.95","percent_visits_covid":"2.56","percent_visits_influenza":"0.26","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.12","percent_visits_covid":"1.76","percent_visits_influenza":"0.32","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.36","percent_visits_covid":"2.08","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.98","percent_visits_covid":"1.52","percent_visits_influenza":"0.43","percent_visits_rsv":"0.04","week_end":"2023-02-25"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.79","percent_visits_covid":"1.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.91","percent_visits_influenza":"0.12","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.08","percent_visits_covid":"0.81","percent_visits_influenza":"0.15","percent_visits_rsv":"0.12","week_end":"2023-03-18"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.26","percent_visits_covid":"0.9","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-03-25"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.34","percent_visits_covid":"0.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.94","percent_visits_covid":"0.7","percent_visits_influenza":"0.16","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.18","percent_visits_covid":"0.87","percent_visits_influenza":"0.12","percent_visits_rsv":"0.2","week_end":"2023-04-15"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.79","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.74","percent_visits_covid":"1.58","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-04-29"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.82","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.2","percent_visits_covid":"0.84","percent_visits_influenza":"0.35","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.81","percent_visits_covid":"0.6","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.59","percent_visits_covid":"0.37","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-05-27"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.37","percent_visits_covid":"0.26","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.33","percent_visits_covid":"0.22","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.25","percent_visits_covid":"0.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.67","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.52","percent_visits_covid":"0.29","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.41","percent_visits_covid":"0.26","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.54","percent_visits_covid":"0.51","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.44","percent_visits_covid":"0.37","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.14","percent_visits_covid":"0.99","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.99","percent_visits_covid":"1.88","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.15","percent_visits_covid":"3.08","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.82","percent_visits_covid":"3.75","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.25","percent_visits_covid":"4.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.92","percent_visits_covid":"4.65","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-09-09"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.89","percent_visits_covid":"2.62","percent_visits_influenza":"0.2","percent_visits_rsv":"0.07","week_end":"2023-09-16"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.64","percent_visits_covid":"2.43","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-09-23"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.25","percent_visits_covid":"1.72","percent_visits_influenza":"0.49","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Poinsett","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.06","percent_visits_covid":"0.9","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.33","percent_visits_covid":"1.15","percent_visits_influenza":"2.11","percent_visits_rsv":"0.07","week_end":"2023-10-14"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.09","percent_visits_covid":"1.13","percent_visits_influenza":"2.78","percent_visits_rsv":"0.18","week_end":"2023-10-21"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.43","percent_visits_covid":"0.99","percent_visits_influenza":"2.05","percent_visits_rsv":"0.46","week_end":"2023-10-28"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.93","percent_visits_covid":"1.2","percent_visits_influenza":"2.14","percent_visits_rsv":"0.62","week_end":"2023-11-04"}
-,{"county":"Poinsett","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.37","percent_visits_covid":"1.67","percent_visits_influenza":"2.99","percent_visits_rsv":"0.92","week_end":"2023-11-11"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.54","percent_visits_covid":"1.72","percent_visits_influenza":"2.45","percent_visits_rsv":"1.47","week_end":"2023-11-18"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.42","percent_visits_covid":"1.2","percent_visits_influenza":"2.62","percent_visits_rsv":"1.76","week_end":"2023-11-25"}
-,{"county":"Poinsett","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.64","percent_visits_covid":"1.8","percent_visits_influenza":"1.45","percent_visits_rsv":"1.42","week_end":"2023-12-02"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.95","percent_visits_covid":"1.95","percent_visits_influenza":"0.0","percent_visits_rsv":"0.49","week_end":"2022-10-01"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.91","percent_visits_covid":"0.96","percent_visits_influenza":"0.0","percent_visits_rsv":"0.96","week_end":"2022-10-08"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"3.57","percent_visits_covid":"0.51","percent_visits_influenza":"0.51","percent_visits_rsv":"3.06","week_end":"2022-10-15"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"4.52","percent_visits_covid":"2.26","percent_visits_influenza":"0.0","percent_visits_rsv":"2.26","week_end":"2022-10-22"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"3.52","percent_visits_covid":"0.5","percent_visits_influenza":"2.01","percent_visits_rsv":"1.01","week_end":"2022-10-29"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"9.28","percent_visits_covid":"1.27","percent_visits_influenza":"8.44","percent_visits_rsv":"0.0","week_end":"2022-11-05"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"6.93","percent_visits_covid":"0.5","percent_visits_influenza":"4.95","percent_visits_rsv":"1.49","week_end":"2022-11-12"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"7.01","percent_visits_covid":"0.64","percent_visits_influenza":"4.46","percent_visits_rsv":"1.91","week_end":"2022-11-19"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"5.85","percent_visits_covid":"0.0","percent_visits_influenza":"4.26","percent_visits_rsv":"1.6","week_end":"2022-11-26"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"4.24","percent_visits_covid":"0.61","percent_visits_influenza":"2.42","percent_visits_rsv":"1.21","week_end":"2022-12-03"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"4.05","percent_visits_covid":"0.0","percent_visits_influenza":"3.47","percent_visits_rsv":"0.58","week_end":"2022-12-10"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"4.91","percent_visits_covid":"1.84","percent_visits_influenza":"3.07","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"2.41","percent_visits_covid":"1.2","percent_visits_influenza":"1.2","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"3.65","percent_visits_covid":"2.08","percent_visits_influenza":"1.56","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"4.95","percent_visits_covid":"3.3","percent_visits_influenza":"1.65","percent_visits_rsv":"0.55","week_end":"2023-01-07"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.31","percent_visits_covid":"1.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.66","percent_visits_covid":"0.66","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.68","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.4","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.7","week_end":"2023-02-04"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.14","percent_visits_covid":"1.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.67","percent_visits_covid":"0.67","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.65","percent_visits_covid":"0.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.34","percent_visits_covid":"1.34","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.53","percent_visits_covid":"0.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.83","percent_visits_covid":"1.83","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.65","percent_visits_covid":"0.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.12","percent_visits_covid":"1.12","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.59","percent_visits_covid":"0.0","percent_visits_influenza":"0.59","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.62","percent_visits_covid":"0.62","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.53","percent_visits_covid":"0.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.61","percent_visits_covid":"0.61","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.64","percent_visits_covid":"0.64","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.1","percent_visits_covid":"1.1","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"3.5","percent_visits_covid":"3.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"2.73","percent_visits_covid":"2.73","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.23","percent_visits_covid":"1.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.8","percent_visits_covid":"1.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.27","percent_visits_covid":"1.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"2.07","percent_visits_covid":"2.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"3.05","percent_visits_covid":"3.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"2.35","percent_visits_covid":"1.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.59","week_end":"2023-11-25"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Sparse","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Polk, AR","hsa_counties":"Polk","percent_visits_combined":"2.52","percent_visits_covid":"1.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.63","week_end":"2023-12-02"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"4.85","percent_visits_covid":"1.76","percent_visits_influenza":"1.76","percent_visits_rsv":"1.32","week_end":"2022-10-01"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"8.91","percent_visits_covid":"1.44","percent_visits_influenza":"7.08","percent_visits_rsv":"0.66","week_end":"2022-10-08"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"8.83","percent_visits_covid":"1.28","percent_visits_influenza":"7.17","percent_visits_rsv":"0.64","week_end":"2022-10-15"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"12.39","percent_visits_covid":"2.25","percent_visits_influenza":"8.89","percent_visits_rsv":"1.25","week_end":"2022-10-22"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"13.68","percent_visits_covid":"0.61","percent_visits_influenza":"12.09","percent_visits_rsv":"0.98","week_end":"2022-10-29"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"13.65","percent_visits_covid":"1.24","percent_visits_influenza":"11.54","percent_visits_rsv":"0.99","week_end":"2022-11-05"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"8.33","percent_visits_covid":"0.77","percent_visits_influenza":"5.9","percent_visits_rsv":"1.67","week_end":"2022-11-12"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"6.42","percent_visits_covid":"1.07","percent_visits_influenza":"3.82","percent_visits_rsv":"1.83","week_end":"2022-11-19"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"7.52","percent_visits_covid":"2.27","percent_visits_influenza":"3.83","percent_visits_rsv":"1.56","week_end":"2022-11-26"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"6.54","percent_visits_covid":"2.88","percent_visits_influenza":"3.53","percent_visits_rsv":"0.26","week_end":"2022-12-03"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"7.84","percent_visits_covid":"3.32","percent_visits_influenza":"4.25","percent_visits_rsv":"0.27","week_end":"2022-12-10"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"6.12","percent_visits_covid":"3.21","percent_visits_influenza":"1.75","percent_visits_rsv":"1.17","week_end":"2022-12-17"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"7.68","percent_visits_covid":"4.58","percent_visits_influenza":"2.78","percent_visits_rsv":"0.65","week_end":"2022-12-24"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"9.04","percent_visits_covid":"5.19","percent_visits_influenza":"3.86","percent_visits_rsv":"0.4","week_end":"2022-12-31"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"4.99","percent_visits_covid":"3.6","percent_visits_influenza":"1.25","percent_visits_rsv":"0.42","week_end":"2023-01-07"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.79","percent_visits_covid":"2.06","percent_visits_influenza":"0.59","percent_visits_rsv":"0.44","week_end":"2023-01-14"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.78","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.44","week_end":"2023-01-21"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.99","percent_visits_covid":"2.82","percent_visits_influenza":"0.17","percent_visits_rsv":"0.17","week_end":"2023-01-28"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.4","percent_visits_covid":"1.4","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.07","percent_visits_covid":"0.61","percent_visits_influenza":"0.46","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.83","percent_visits_covid":"0.42","percent_visits_influenza":"1.41","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.37","percent_visits_covid":"0.91","percent_visits_influenza":"0.3","percent_visits_rsv":"0.15","week_end":"2023-03-04"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.6","percent_visits_covid":"0.3","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.59","percent_visits_covid":"0.15","percent_visits_influenza":"0.44","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.31","percent_visits_covid":"0.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.83","percent_visits_covid":"0.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.88","percent_visits_covid":"1.59","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.94","percent_visits_covid":"1.64","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.68","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.31","percent_visits_covid":"0.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.17","percent_visits_covid":"0.73","percent_visits_influenza":"0.44","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.28","percent_visits_covid":"0.0","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.83","percent_visits_covid":"0.83","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.41","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.15","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.55","percent_visits_covid":"0.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.55","percent_visits_covid":"0.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.83","percent_visits_covid":"0.55","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.56","percent_visits_covid":"0.28","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.07","percent_visits_covid":"0.91","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.06","percent_visits_covid":"0.76","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.29","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-29"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.47","percent_visits_covid":"0.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.2","percent_visits_covid":"1.05","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.45","percent_visits_covid":"2.31","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"3.62","percent_visits_covid":"3.22","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-08-26"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"4.64","percent_visits_covid":"4.23","percent_visits_influenza":"0.27","percent_visits_rsv":"0.14","week_end":"2023-09-02"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"5.51","percent_visits_covid":"4.59","percent_visits_influenza":"0.66","percent_visits_rsv":"0.26","week_end":"2023-09-09"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"4.03","percent_visits_covid":"4.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"5.65","percent_visits_covid":"5.23","percent_visits_influenza":"0.14","percent_visits_rsv":"0.28","week_end":"2023-09-23"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.95","percent_visits_covid":"2.66","percent_visits_influenza":"0.15","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.28","percent_visits_covid":"2.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.75","percent_visits_covid":"1.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"3.14","percent_visits_covid":"1.95","percent_visits_influenza":"1.05","percent_visits_rsv":"0.15","week_end":"2023-10-21"}
-,{"county":"Pope","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.69","percent_visits_covid":"1.38","percent_visits_influenza":"0.46","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.96","percent_visits_covid":"0.8","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Pope","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.07","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.31","week_end":"2023-11-11"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.87","percent_visits_covid":"0.58","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"5.41","percent_visits_covid":"2.25","percent_visits_influenza":"1.5","percent_visits_rsv":"1.65","week_end":"2023-11-25"}
-,{"county":"Pope","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"5.38","percent_visits_covid":"2.62","percent_visits_influenza":"0.62","percent_visits_rsv":"2.31","week_end":"2023-12-02"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.32","percent_visits_covid":"0.83","percent_visits_influenza":"2.49","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Prairie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Prairie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Prairie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Pulaski","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Pulaski","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Pulaski","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.01","percent_visits_covid":"1.42","percent_visits_influenza":"0.38","percent_visits_rsv":"1.34","week_end":"2022-10-01"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.3","percent_visits_covid":"1.3","percent_visits_influenza":"0.33","percent_visits_rsv":"1.67","week_end":"2022-10-08"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.59","percent_visits_covid":"1.49","percent_visits_influenza":"1.26","percent_visits_rsv":"2.0","week_end":"2022-10-15"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.94","percent_visits_covid":"1.56","percent_visits_influenza":"0.94","percent_visits_rsv":"1.44","week_end":"2022-10-22"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.81","percent_visits_covid":"1.03","percent_visits_influenza":"2.67","percent_visits_rsv":"1.22","week_end":"2022-10-29"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"6.71","percent_visits_covid":"1.26","percent_visits_influenza":"3.93","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.81","percent_visits_covid":"1.15","percent_visits_influenza":"6.22","percent_visits_rsv":"1.62","week_end":"2022-11-12"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.86","percent_visits_covid":"0.98","percent_visits_influenza":"7.08","percent_visits_rsv":"0.95","week_end":"2022-11-19"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"15.56","percent_visits_covid":"1.52","percent_visits_influenza":"13.26","percent_visits_rsv":"1.18","week_end":"2022-11-26"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"10.5","percent_visits_covid":"1.84","percent_visits_influenza":"8.06","percent_visits_rsv":"1.08","week_end":"2022-12-03"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"8.98","percent_visits_covid":"2.02","percent_visits_influenza":"6.51","percent_visits_rsv":"0.56","week_end":"2022-12-10"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.44","percent_visits_covid":"2.76","percent_visits_influenza":"4.49","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.07","percent_visits_covid":"3.94","percent_visits_influenza":"2.84","percent_visits_rsv":"0.42","week_end":"2022-12-24"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"7.77","percent_visits_covid":"4.9","percent_visits_influenza":"2.76","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.9","percent_visits_covid":"3.77","percent_visits_influenza":"2.01","percent_visits_rsv":"0.25","week_end":"2023-01-07"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.98","percent_visits_covid":"3.68","percent_visits_influenza":"0.94","percent_visits_rsv":"0.43","week_end":"2023-01-14"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.14","percent_visits_covid":"2.5","percent_visits_influenza":"0.52","percent_visits_rsv":"0.16","week_end":"2023-01-21"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.17","percent_visits_covid":"2.56","percent_visits_influenza":"0.45","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.95","percent_visits_covid":"2.56","percent_visits_influenza":"0.26","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.12","percent_visits_covid":"1.76","percent_visits_influenza":"0.32","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.36","percent_visits_covid":"2.08","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.98","percent_visits_covid":"1.52","percent_visits_influenza":"0.43","percent_visits_rsv":"0.04","week_end":"2023-02-25"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.79","percent_visits_covid":"1.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.91","percent_visits_influenza":"0.12","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.08","percent_visits_covid":"0.81","percent_visits_influenza":"0.15","percent_visits_rsv":"0.12","week_end":"2023-03-18"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.26","percent_visits_covid":"0.9","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-03-25"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.34","percent_visits_covid":"0.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.12","week_end":"2023-04-01"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.94","percent_visits_covid":"0.7","percent_visits_influenza":"0.16","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.18","percent_visits_covid":"0.87","percent_visits_influenza":"0.12","percent_visits_rsv":"0.2","week_end":"2023-04-15"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.06","percent_visits_covid":"0.79","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.74","percent_visits_covid":"1.58","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-04-29"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.82","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.2","percent_visits_covid":"0.84","percent_visits_influenza":"0.35","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.81","percent_visits_covid":"0.6","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.59","percent_visits_covid":"0.37","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-05-27"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.37","percent_visits_covid":"0.26","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.33","percent_visits_covid":"0.22","percent_visits_influenza":"0.07","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.25","percent_visits_covid":"0.22","percent_visits_influenza":"0.0","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.9","percent_visits_covid":"0.67","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.52","percent_visits_covid":"0.29","percent_visits_influenza":"0.22","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.41","percent_visits_covid":"0.26","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.54","percent_visits_covid":"0.51","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"0.44","percent_visits_covid":"0.37","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.14","percent_visits_covid":"0.99","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"1.99","percent_visits_covid":"1.88","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.15","percent_visits_covid":"3.08","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.82","percent_visits_covid":"3.75","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.25","percent_visits_covid":"4.94","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.92","percent_visits_covid":"4.65","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-09-09"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.89","percent_visits_covid":"2.62","percent_visits_influenza":"0.2","percent_visits_rsv":"0.07","week_end":"2023-09-16"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.64","percent_visits_covid":"2.43","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-09-23"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.25","percent_visits_covid":"1.72","percent_visits_influenza":"0.49","percent_visits_rsv":"0.04","week_end":"2023-09-30"}
-,{"county":"Randolph","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"2.06","percent_visits_covid":"0.9","percent_visits_influenza":"1.15","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.33","percent_visits_covid":"1.15","percent_visits_influenza":"2.11","percent_visits_rsv":"0.07","week_end":"2023-10-14"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.09","percent_visits_covid":"1.13","percent_visits_influenza":"2.78","percent_visits_rsv":"0.18","week_end":"2023-10-21"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.43","percent_visits_covid":"0.99","percent_visits_influenza":"2.05","percent_visits_rsv":"0.46","week_end":"2023-10-28"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"3.93","percent_visits_covid":"1.2","percent_visits_influenza":"2.14","percent_visits_rsv":"0.62","week_end":"2023-11-04"}
-,{"county":"Randolph","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.37","percent_visits_covid":"1.67","percent_visits_influenza":"2.99","percent_visits_rsv":"0.92","week_end":"2023-11-11"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.54","percent_visits_covid":"1.72","percent_visits_influenza":"2.45","percent_visits_rsv":"1.47","week_end":"2023-11-18"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"5.42","percent_visits_covid":"1.2","percent_visits_influenza":"2.62","percent_visits_rsv":"1.76","week_end":"2023-11-25"}
-,{"county":"Randolph","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Craighead, AR - Greene, AR","hsa_counties":"Clay, Craighead, Greene, Lawrence, Poinsett, Randolph","percent_visits_combined":"4.64","percent_visits_covid":"1.8","percent_visits_influenza":"1.45","percent_visits_rsv":"1.42","week_end":"2023-12-02"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Saline","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Saline","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Saline","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.69","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2022-10-08"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"4.64","percent_visits_covid":"4.23","percent_visits_influenza":"0.27","percent_visits_rsv":"0.14","week_end":"2023-09-02"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.23","percent_visits_covid":"0.98","percent_visits_influenza":"0.26","percent_visits_rsv":"0.98","week_end":"2022-10-15"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.06","percent_visits_covid":"0.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.75","week_end":"2022-10-22"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.83","percent_visits_covid":"0.4","percent_visits_influenza":"2.45","percent_visits_rsv":"2.05","week_end":"2022-10-29"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.84","percent_visits_covid":"0.95","percent_visits_influenza":"2.36","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.67","percent_visits_covid":"1.01","percent_visits_influenza":"3.78","percent_visits_rsv":"0.95","week_end":"2022-11-12"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.31","percent_visits_covid":"0.34","percent_visits_influenza":"4.49","percent_visits_rsv":"0.54","week_end":"2022-11-19"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"13.18","percent_visits_covid":"1.79","percent_visits_influenza":"10.84","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.0","percent_visits_covid":"1.05","percent_visits_influenza":"6.6","percent_visits_rsv":"0.41","week_end":"2022-12-03"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.77","percent_visits_covid":"1.88","percent_visits_influenza":"5.83","percent_visits_rsv":"0.29","week_end":"2022-12-10"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.57","percent_visits_covid":"2.17","percent_visits_influenza":"5.21","percent_visits_rsv":"0.25","week_end":"2022-12-17"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.4","percent_visits_covid":"3.95","percent_visits_influenza":"4.45","percent_visits_rsv":"0.07","week_end":"2022-12-24"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.7","percent_visits_covid":"3.94","percent_visits_influenza":"3.94","percent_visits_rsv":"0.06","week_end":"2022-12-31"}
-,{"county":"Scott","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.45","percent_visits_covid":"2.95","percent_visits_influenza":"2.37","percent_visits_rsv":"0.19","week_end":"2023-01-07"}
-,{"county":"Scott","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.21","percent_visits_covid":"1.86","percent_visits_influenza":"1.43","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Scott","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.6","percent_visits_covid":"1.13","percent_visits_influenza":"1.34","percent_visits_rsv":"0.2","week_end":"2023-01-21"}
-,{"county":"Scott","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.71","percent_visits_covid":"1.29","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.41","percent_visits_covid":"0.62","percent_visits_influenza":"0.78","percent_visits_rsv":"0.08","week_end":"2023-02-04"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.75","percent_visits_covid":"0.34","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.32","percent_visits_covid":"0.76","percent_visits_influenza":"0.48","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.61","percent_visits_covid":"1.03","percent_visits_influenza":"0.45","percent_visits_rsv":"0.13","week_end":"2023-02-25"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.42","percent_visits_covid":"0.97","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.12","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.78","percent_visits_covid":"0.59","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.21","percent_visits_covid":"1.66","percent_visits_influenza":"0.62","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.36","percent_visits_covid":"1.09","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.98","percent_visits_covid":"0.52","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.69","percent_visits_covid":"0.38","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.26","percent_visits_covid":"1.0","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.24","percent_visits_covid":"1.11","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.76","percent_visits_covid":"0.53","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.79","percent_visits_covid":"0.6","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.8","percent_visits_covid":"0.61","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.43","percent_visits_covid":"0.3","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.37","percent_visits_covid":"0.3","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.6","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.92","percent_visits_covid":"0.73","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.82","percent_visits_covid":"0.63","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.61","percent_visits_covid":"0.49","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.24","percent_visits_covid":"0.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.52","percent_visits_covid":"0.45","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.84","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.49","percent_visits_covid":"1.31","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.05","percent_visits_covid":"0.99","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.67","percent_visits_covid":"1.43","percent_visits_influenza":"0.24","percent_visits_rsv":"0.06","week_end":"2023-08-26"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.53","percent_visits_covid":"2.41","percent_visits_influenza":"0.18","percent_visits_rsv":"0.06","week_end":"2023-09-02"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.25","percent_visits_covid":"2.25","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.58","percent_visits_covid":"2.54","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Scott","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.13","percent_visits_covid":"2.01","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-09-23"}
-,{"county":"Scott","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.86","percent_visits_covid":"1.63","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-09-30"}
-,{"county":"Scott","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.68","percent_visits_covid":"1.56","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-10-07"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.54","percent_visits_covid":"1.39","percent_visits_influenza":"0.11","percent_visits_rsv":"0.04","week_end":"2023-10-14"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.9","percent_visits_covid":"1.52","percent_visits_influenza":"0.27","percent_visits_rsv":"0.16","week_end":"2023-10-21"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.78","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.17","percent_visits_influenza":"0.17","percent_visits_rsv":"0.25","week_end":"2023-11-04"}
-,{"county":"Scott","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.18","percent_visits_covid":"1.72","percent_visits_influenza":"0.27","percent_visits_rsv":"0.19","week_end":"2023-11-11"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.41","percent_visits_covid":"1.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.42","week_end":"2023-11-18"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.4","percent_visits_covid":"2.09","percent_visits_influenza":"0.53","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Scott","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.73","percent_visits_covid":"1.85","percent_visits_influenza":"0.64","percent_visits_rsv":"1.28","week_end":"2023-12-02"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2022-10-01"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.88","percent_visits_covid":"0.15","percent_visits_influenza":"0.15","percent_visits_rsv":"0.59","week_end":"2022-10-08"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.29","percent_visits_covid":"1.29","percent_visits_influenza":"0.29","percent_visits_rsv":"0.71","week_end":"2022-10-15"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.54","percent_visits_covid":"0.32","percent_visits_influenza":"1.9","percent_visits_rsv":"0.32","week_end":"2022-10-22"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.12","percent_visits_covid":"0.47","percent_visits_influenza":"2.19","percent_visits_rsv":"0.47","week_end":"2022-10-29"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.88","percent_visits_covid":"0.55","percent_visits_influenza":"2.2","percent_visits_rsv":"0.14","week_end":"2022-11-05"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.62","percent_visits_rsv":"0.27","week_end":"2022-11-12"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.99","percent_visits_covid":"0.28","percent_visits_influenza":"2.28","percent_visits_rsv":"0.43","week_end":"2022-11-19"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.5","percent_visits_covid":"0.4","percent_visits_influenza":"3.84","percent_visits_rsv":"0.26","week_end":"2022-11-26"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.43","percent_visits_covid":"1.07","percent_visits_influenza":"3.22","percent_visits_rsv":"0.13","week_end":"2022-12-03"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.18","percent_visits_covid":"1.5","percent_visits_influenza":"3.27","percent_visits_rsv":"0.41","week_end":"2022-12-10"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.94","percent_visits_covid":"0.56","percent_visits_influenza":"3.38","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.91","percent_visits_covid":"2.13","percent_visits_influenza":"2.13","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.21","percent_visits_covid":"1.31","percent_visits_influenza":"2.47","percent_visits_rsv":"0.44","week_end":"2022-12-31"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.8","percent_visits_covid":"0.78","percent_visits_influenza":"2.02","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.02","percent_visits_covid":"1.96","percent_visits_influenza":"1.06","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.86","percent_visits_covid":"0.45","percent_visits_influenza":"2.41","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.84","percent_visits_covid":"0.5","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.56","percent_visits_covid":"0.31","percent_visits_influenza":"1.24","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.94","percent_visits_covid":"0.31","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.48","percent_visits_covid":"0.16","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.61","percent_visits_covid":"0.46","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.15","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-03-18"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.3","percent_visits_covid":"0.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.14","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.16","percent_visits_covid":"0.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.29","percent_visits_covid":"0.15","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.13","percent_visits_covid":"0.99","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.8","percent_visits_covid":"0.67","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.74","percent_visits_covid":"1.74","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.55","percent_visits_covid":"0.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.26","percent_visits_covid":"0.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.41","percent_visits_covid":"0.27","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.15","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.81","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.71","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-15"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.44","percent_visits_covid":"0.29","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-07-22"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.47","percent_visits_covid":"0.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"0.9","percent_visits_covid":"0.75","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-08-05"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.28","percent_visits_covid":"1.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.55","percent_visits_covid":"2.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.79","percent_visits_covid":"2.79","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.17","percent_visits_covid":"3.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.2","percent_visits_covid":"4.81","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.55","percent_visits_covid":"3.41","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.18","percent_visits_covid":"2.03","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Searcy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"1.27","percent_visits_covid":"1.13","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.5","percent_visits_covid":"1.83","percent_visits_influenza":"0.33","percent_visits_rsv":"0.33","week_end":"2023-10-07"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.54","percent_visits_covid":"1.94","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.07","percent_visits_covid":"0.69","percent_visits_influenza":"0.83","percent_visits_rsv":"0.55","week_end":"2023-10-21"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"3.76","percent_visits_covid":"2.79","percent_visits_influenza":"0.42","percent_visits_rsv":"0.56","week_end":"2023-10-28"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.83","percent_visits_covid":"2.38","percent_visits_influenza":"0.15","percent_visits_rsv":"0.3","week_end":"2023-11-04"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"2.44","percent_visits_covid":"0.76","percent_visits_influenza":"1.37","percent_visits_rsv":"0.31","week_end":"2023-11-11"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"4.09","percent_visits_covid":"2.36","percent_visits_influenza":"0.31","percent_visits_rsv":"1.42","week_end":"2023-11-18"}
-,{"county":"Searcy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.34","percent_visits_covid":"3.66","percent_visits_influenza":"0.46","percent_visits_rsv":"1.22","week_end":"2023-11-25"}
-,{"county":"Searcy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Boone, AR - Carroll, AR","hsa_counties":"Boone, Carroll, Newton, Searcy","percent_visits_combined":"5.08","percent_visits_covid":"3.23","percent_visits_influenza":"0.62","percent_visits_rsv":"1.23","week_end":"2023-12-02"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.69","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2022-10-08"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.23","percent_visits_covid":"0.98","percent_visits_influenza":"0.26","percent_visits_rsv":"0.98","week_end":"2022-10-15"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.06","percent_visits_covid":"0.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.75","week_end":"2022-10-22"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.83","percent_visits_covid":"0.4","percent_visits_influenza":"2.45","percent_visits_rsv":"2.05","week_end":"2022-10-29"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"4.84","percent_visits_covid":"0.95","percent_visits_influenza":"2.36","percent_visits_rsv":"1.59","week_end":"2022-11-05"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.67","percent_visits_covid":"1.01","percent_visits_influenza":"3.78","percent_visits_rsv":"0.95","week_end":"2022-11-12"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.31","percent_visits_covid":"0.34","percent_visits_influenza":"4.49","percent_visits_rsv":"0.54","week_end":"2022-11-19"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"13.18","percent_visits_covid":"1.79","percent_visits_influenza":"10.84","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.0","percent_visits_covid":"1.05","percent_visits_influenza":"6.6","percent_visits_rsv":"0.41","week_end":"2022-12-03"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.77","percent_visits_covid":"1.88","percent_visits_influenza":"5.83","percent_visits_rsv":"0.29","week_end":"2022-12-10"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.57","percent_visits_covid":"2.17","percent_visits_influenza":"5.21","percent_visits_rsv":"0.25","week_end":"2022-12-17"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"8.4","percent_visits_covid":"3.95","percent_visits_influenza":"4.45","percent_visits_rsv":"0.07","week_end":"2022-12-24"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"7.7","percent_visits_covid":"3.94","percent_visits_influenza":"3.94","percent_visits_rsv":"0.06","week_end":"2022-12-31"}
-,{"county":"Sebastian","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"5.45","percent_visits_covid":"2.95","percent_visits_influenza":"2.37","percent_visits_rsv":"0.19","week_end":"2023-01-07"}
-,{"county":"Sebastian","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.21","percent_visits_covid":"1.86","percent_visits_influenza":"1.43","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Sebastian","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.6","percent_visits_covid":"1.13","percent_visits_influenza":"1.34","percent_visits_rsv":"0.2","week_end":"2023-01-21"}
-,{"county":"Sebastian","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.71","percent_visits_covid":"1.29","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.41","percent_visits_covid":"0.62","percent_visits_influenza":"0.78","percent_visits_rsv":"0.08","week_end":"2023-02-04"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.75","percent_visits_covid":"0.34","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.32","percent_visits_covid":"0.76","percent_visits_influenza":"0.48","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.61","percent_visits_covid":"1.03","percent_visits_influenza":"0.45","percent_visits_rsv":"0.13","week_end":"2023-02-25"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.42","percent_visits_covid":"0.97","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.12","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.78","percent_visits_covid":"0.59","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.0","percent_visits_covid":"0.67","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.21","percent_visits_covid":"1.66","percent_visits_influenza":"0.62","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.36","percent_visits_covid":"1.09","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.98","percent_visits_covid":"0.52","percent_visits_influenza":"0.52","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.69","percent_visits_covid":"0.38","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.26","percent_visits_covid":"1.0","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.24","percent_visits_covid":"1.11","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.76","percent_visits_covid":"0.53","percent_visits_influenza":"0.23","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.79","percent_visits_covid":"0.6","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.8","percent_visits_covid":"0.61","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.43","percent_visits_covid":"0.3","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.37","percent_visits_covid":"0.3","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.6","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.92","percent_visits_covid":"0.73","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.82","percent_visits_covid":"0.63","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.61","percent_visits_covid":"0.49","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.24","percent_visits_covid":"0.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.52","percent_visits_covid":"0.45","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"0.84","percent_visits_covid":"0.84","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.49","percent_visits_covid":"1.31","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.05","percent_visits_covid":"0.99","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.67","percent_visits_covid":"1.43","percent_visits_influenza":"0.24","percent_visits_rsv":"0.06","week_end":"2023-08-26"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.53","percent_visits_covid":"2.41","percent_visits_influenza":"0.18","percent_visits_rsv":"0.06","week_end":"2023-09-02"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.25","percent_visits_covid":"2.25","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.58","percent_visits_covid":"2.54","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Sebastian","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.13","percent_visits_covid":"2.01","percent_visits_influenza":"0.12","percent_visits_rsv":"0.08","week_end":"2023-09-23"}
-,{"county":"Sebastian","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.86","percent_visits_covid":"1.63","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-09-30"}
-,{"county":"Sebastian","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.68","percent_visits_covid":"1.56","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-10-07"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.54","percent_visits_covid":"1.39","percent_visits_influenza":"0.11","percent_visits_rsv":"0.04","week_end":"2023-10-14"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.9","percent_visits_covid":"1.52","percent_visits_influenza":"0.27","percent_visits_rsv":"0.16","week_end":"2023-10-21"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.78","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"1.59","percent_visits_covid":"1.17","percent_visits_influenza":"0.17","percent_visits_rsv":"0.25","week_end":"2023-11-04"}
-,{"county":"Sebastian","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.18","percent_visits_covid":"1.72","percent_visits_influenza":"0.27","percent_visits_rsv":"0.19","week_end":"2023-11-11"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"2.41","percent_visits_covid":"1.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.42","week_end":"2023-11-18"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.4","percent_visits_covid":"2.09","percent_visits_influenza":"0.53","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Sebastian","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Sebastian (Fort Smith), AR - Crawford, AR","hsa_counties":"Crawford, Franklin, Logan, Scott, Sebastian","percent_visits_combined":"3.73","percent_visits_covid":"1.85","percent_visits_influenza":"0.64","percent_visits_rsv":"1.28","week_end":"2023-12-02"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.6","percent_visits_covid":"0.78","percent_visits_influenza":"0.26","percent_visits_rsv":"1.56","week_end":"2022-10-01"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"0.24","percent_visits_rsv":"1.95","week_end":"2022-10-08"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.66","percent_visits_covid":"1.65","percent_visits_influenza":"0.47","percent_visits_rsv":"3.54","week_end":"2022-10-15"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.28","percent_visits_covid":"1.01","percent_visits_influenza":"2.52","percent_visits_rsv":"0.76","week_end":"2022-10-22"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"8.43","percent_visits_covid":"1.45","percent_visits_influenza":"3.86","percent_visits_rsv":"4.34","week_end":"2022-10-29"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.29","percent_visits_covid":"1.33","percent_visits_influenza":"7.08","percent_visits_rsv":"0.88","week_end":"2022-11-05"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"15.5","percent_visits_covid":"0.83","percent_visits_influenza":"11.78","percent_visits_rsv":"3.51","week_end":"2022-11-12"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"21.99","percent_visits_covid":"0.83","percent_visits_influenza":"19.29","percent_visits_rsv":"1.87","week_end":"2022-11-19"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"26.37","percent_visits_covid":"1.13","percent_visits_influenza":"25.24","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"5.51","percent_visits_covid":"4.59","percent_visits_influenza":"0.66","percent_visits_rsv":"0.26","week_end":"2023-09-09"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"22.03","percent_visits_covid":"3.12","percent_visits_influenza":"18.91","percent_visits_rsv":"0.39","week_end":"2022-12-03"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"12.65","percent_visits_covid":"2.45","percent_visits_influenza":"10.2","percent_visits_rsv":"0.61","week_end":"2022-12-10"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"9.95","percent_visits_covid":"4.59","percent_visits_influenza":"5.61","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.51","percent_visits_covid":"2.61","percent_visits_influenza":"2.9","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.69","percent_visits_covid":"2.51","percent_visits_influenza":"2.96","percent_visits_rsv":"0.23","week_end":"2022-12-31"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.98","percent_visits_covid":"4.19","percent_visits_influenza":"2.79","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.91","percent_visits_covid":"1.45","percent_visits_influenza":"1.45","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.34","percent_visits_covid":"1.95","percent_visits_influenza":"1.11","percent_visits_rsv":"0.28","week_end":"2023-01-21"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.82","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.94","percent_visits_covid":"1.94","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.89","percent_visits_covid":"2.75","percent_visits_influenza":"2.14","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.44","percent_visits_covid":"4.17","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.39","percent_visits_covid":"2.82","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.76","percent_visits_covid":"3.49","percent_visits_influenza":"1.9","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.97","percent_visits_covid":"1.41","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.95","percent_visits_covid":"0.32","percent_visits_influenza":"1.62","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.31","week_end":"2023-03-25"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.96","percent_visits_covid":"0.32","percent_visits_influenza":"0.64","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.05","percent_visits_covid":"2.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.54","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.95","percent_visits_covid":"5.68","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.33","percent_visits_covid":"2.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.43","percent_visits_covid":"1.15","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.13","percent_visits_covid":"1.87","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.23","percent_visits_covid":"0.61","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.9","percent_visits_covid":"1.09","percent_visits_influenza":"0.54","percent_visits_rsv":"0.27","week_end":"2023-06-03"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.3","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.3","week_end":"2023-06-10"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.29","percent_visits_covid":"0.0","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.53","percent_visits_covid":"1.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.28","percent_visits_covid":"0.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.93","percent_visits_covid":"0.62","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.26","percent_visits_covid":"1.26","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"4.03","percent_visits_covid":"4.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.39","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.25","percent_visits_covid":"0.93","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"0.88","percent_visits_covid":"0.88","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.85","percent_visits_covid":"3.25","percent_visits_influenza":"0.59","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Sevier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.37","percent_visits_covid":"3.83","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-09-02"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.62","percent_visits_covid":"3.41","percent_visits_influenza":"1.22","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.9","percent_visits_covid":"3.46","percent_visits_influenza":"1.44","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.02","percent_visits_covid":"2.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Sevier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.17","percent_visits_covid":"1.9","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.99","percent_visits_covid":"1.99","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.06","percent_visits_covid":"1.77","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"2.38","percent_visits_covid":"1.79","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"1.63","percent_visits_covid":"0.82","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.45","percent_visits_covid":"1.72","percent_visits_influenza":"1.72","percent_visits_rsv":"0.34","week_end":"2023-11-04"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"4.24","percent_visits_covid":"2.39","percent_visits_influenza":"1.86","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"6.67","percent_visits_covid":"2.12","percent_visits_influenza":"2.73","percent_visits_rsv":"1.82","week_end":"2023-11-18"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"5.49","percent_visits_covid":"1.22","percent_visits_influenza":"2.44","percent_visits_rsv":"1.83","week_end":"2023-11-25"}
-,{"county":"Sevier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Miller, AR - Hempstead, AR","hsa_counties":"Hempstead, Howard, Lafayette, Little River, Miller, Nevada, Sevier","percent_visits_combined":"3.99","percent_visits_covid":"1.23","percent_visits_influenza":"0.61","percent_visits_rsv":"2.15","week_end":"2023-12-02"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.51","percent_visits_covid":"2.76","percent_visits_influenza":"0.0","percent_visits_rsv":"2.76","week_end":"2022-10-01"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.16","percent_visits_covid":"1.51","percent_visits_influenza":"0.13","percent_visits_rsv":"3.52","week_end":"2022-10-08"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.26","percent_visits_covid":"0.66","percent_visits_influenza":"0.27","percent_visits_rsv":"1.33","week_end":"2022-10-15"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.15","percent_visits_covid":"0.86","percent_visits_influenza":"0.72","percent_visits_rsv":"1.72","week_end":"2022-10-22"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.31","percent_visits_covid":"0.4","percent_visits_influenza":"1.32","percent_visits_rsv":"1.59","week_end":"2022-10-29"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.52","percent_visits_covid":"1.2","percent_visits_influenza":"2.26","percent_visits_rsv":"1.06","week_end":"2022-11-05"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.41","percent_visits_covid":"1.08","percent_visits_influenza":"4.19","percent_visits_rsv":"0.14","week_end":"2022-11-12"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"8.16","percent_visits_covid":"1.52","percent_visits_influenza":"6.22","percent_visits_rsv":"0.69","week_end":"2022-11-19"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"16.95","percent_visits_covid":"2.92","percent_visits_influenza":"13.58","percent_visits_rsv":"0.56","week_end":"2022-11-26"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"13.42","percent_visits_covid":"2.8","percent_visits_influenza":"10.18","percent_visits_rsv":"0.45","week_end":"2022-12-03"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"10.3","percent_visits_covid":"2.64","percent_visits_influenza":"7.53","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.67","percent_visits_covid":"2.91","percent_visits_influenza":"6.62","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.44","percent_visits_covid":"3.83","percent_visits_influenza":"5.46","percent_visits_rsv":"0.15","week_end":"2022-12-24"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.71","percent_visits_covid":"4.27","percent_visits_influenza":"2.07","percent_visits_rsv":"0.37","week_end":"2022-12-31"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.28","percent_visits_covid":"4.43","percent_visits_influenza":"1.48","percent_visits_rsv":"0.62","week_end":"2023-01-07"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.61","percent_visits_covid":"2.92","percent_visits_influenza":"0.56","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.57","percent_visits_covid":"1.66","percent_visits_influenza":"0.91","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.53","percent_visits_covid":"1.77","percent_visits_influenza":"1.77","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-02-04"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"5.65","percent_visits_covid":"5.23","percent_visits_influenza":"0.14","percent_visits_rsv":"0.28","week_end":"2023-09-23"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.78","percent_visits_covid":"1.1","percent_visits_influenza":"0.68","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"0.86","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"1.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.44","percent_visits_covid":"1.9","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-03-04"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.9","percent_visits_covid":"1.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.57","percent_visits_covid":"1.28","percent_visits_influenza":"0.14","percent_visits_rsv":"0.14","week_end":"2023-03-25"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.52","percent_visits_covid":"1.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.58","percent_visits_covid":"1.43","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.03","percent_visits_covid":"1.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.92","percent_visits_covid":"0.92","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.6","percent_visits_covid":"0.48","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.76","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.37","percent_visits_covid":"0.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.25","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.5","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-07-15"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.77","percent_visits_covid":"0.38","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.18","percent_visits_covid":"0.82","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.48","percent_visits_covid":"0.95","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.91","percent_visits_covid":"1.59","percent_visits_influenza":"0.21","percent_visits_rsv":"0.11","week_end":"2023-08-19"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.49","percent_visits_covid":"3.28","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-08-26"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.71","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.64","percent_visits_covid":"4.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.09","week_end":"2023-09-09"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.39","percent_visits_covid":"3.29","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-16"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.18","percent_visits_covid":"2.97","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-23"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.59","percent_visits_covid":"2.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.22","week_end":"2023-09-30"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.65","percent_visits_covid":"1.99","percent_visits_influenza":"0.11","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.93","percent_visits_covid":"1.5","percent_visits_influenza":"0.11","percent_visits_rsv":"0.32","week_end":"2023-10-14"}
-,{"county":"Sharp","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.45","percent_visits_covid":"0.67","percent_visits_influenza":"0.11","percent_visits_rsv":"0.67","week_end":"2023-10-21"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.4","percent_visits_covid":"0.43","percent_visits_influenza":"0.11","percent_visits_rsv":"0.86","week_end":"2023-10-28"}
-,{"county":"Sharp","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.92","percent_visits_covid":"0.84","percent_visits_influenza":"0.24","percent_visits_rsv":"0.84","week_end":"2023-11-04"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.83","percent_visits_covid":"1.59","percent_visits_influenza":"0.0","percent_visits_rsv":"1.25","week_end":"2023-11-11"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.84","percent_visits_covid":"0.8","percent_visits_influenza":"0.11","percent_visits_rsv":"2.05","week_end":"2023-11-18"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.65","percent_visits_covid":"1.7","percent_visits_influenza":"0.23","percent_visits_rsv":"2.72","week_end":"2023-11-25"}
-,{"county":"Sharp","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.77","percent_visits_covid":"2.68","percent_visits_influenza":"0.23","percent_visits_rsv":"2.1","week_end":"2023-12-02"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.52","percent_visits_covid":"1.47","percent_visits_influenza":"0.63","percent_visits_rsv":"0.63","week_end":"2022-10-01"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.78","percent_visits_covid":"1.32","percent_visits_influenza":"2.08","percent_visits_rsv":"0.38","week_end":"2022-10-08"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.18","percent_visits_covid":"1.19","percent_visits_influenza":"1.79","percent_visits_rsv":"0.4","week_end":"2022-10-15"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.85","percent_visits_covid":"1.03","percent_visits_influenza":"0.82","percent_visits_rsv":"0.0","week_end":"2022-10-22"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.7","percent_visits_covid":"0.83","percent_visits_influenza":"1.45","percent_visits_rsv":"0.41","week_end":"2022-10-29"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.12","percent_visits_covid":"1.31","percent_visits_influenza":"2.43","percent_visits_rsv":"0.37","week_end":"2022-11-05"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"7.78","percent_visits_covid":"1.32","percent_visits_influenza":"6.46","percent_visits_rsv":"0.0","week_end":"2022-11-12"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.75","percent_visits_covid":"0.7","percent_visits_influenza":"4.05","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"10.32","percent_visits_covid":"1.78","percent_visits_influenza":"8.54","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"9.44","percent_visits_covid":"2.19","percent_visits_influenza":"6.91","percent_visits_rsv":"0.34","week_end":"2022-12-03"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"6.02","percent_visits_covid":"1.59","percent_visits_influenza":"4.25","percent_visits_rsv":"0.18","week_end":"2022-12-10"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.53","percent_visits_covid":"1.24","percent_visits_influenza":"2.28","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.7","percent_visits_covid":"1.92","percent_visits_influenza":"2.78","percent_visits_rsv":"0.0","week_end":"2022-12-24"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.83","percent_visits_covid":"3.09","percent_visits_influenza":"1.74","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.93","percent_visits_covid":"3.61","percent_visits_influenza":"1.33","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.84","percent_visits_covid":"1.64","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.88","percent_visits_covid":"1.46","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.89","percent_visits_covid":"1.68","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.51","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.68","percent_visits_covid":"1.47","percent_visits_influenza":"0.21","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.82","percent_visits_covid":"0.82","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.69","percent_visits_covid":"1.92","percent_visits_influenza":"0.38","percent_visits_rsv":"0.38","week_end":"2023-02-25"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.58","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.8","percent_visits_covid":"0.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.6","percent_visits_covid":"0.6","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.7","percent_visits_covid":"0.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.12","percent_visits_covid":"1.12","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.02","percent_visits_covid":"1.02","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.93","percent_visits_covid":"0.93","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.44","percent_visits_covid":"0.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.38","percent_visits_covid":"0.19","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.38","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.61","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.2","week_end":"2023-06-10"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.2","percent_visits_covid":"0.0","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.18","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.18","week_end":"2023-07-01"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.19","percent_visits_covid":"0.0","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"0.39","percent_visits_covid":"0.19","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.61","percent_visits_covid":"1.07","percent_visits_influenza":"0.36","percent_visits_rsv":"0.18","week_end":"2023-07-22"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.5","percent_visits_covid":"1.12","percent_visits_influenza":"0.19","percent_visits_rsv":"0.19","week_end":"2023-07-29"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.31","percent_visits_covid":"3.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.87","percent_visits_covid":"1.87","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.65","percent_visits_covid":"1.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"St. Francis","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.71","percent_visits_covid":"2.71","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.5","percent_visits_covid":"2.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.13","percent_visits_covid":"4.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.63","percent_visits_covid":"2.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.41","percent_visits_covid":"3.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.97","percent_visits_covid":"1.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.4","percent_visits_covid":"2.0","percent_visits_influenza":"0.2","percent_visits_rsv":"0.2","week_end":"2023-10-07"}
-,{"county":"St. Francis","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"1.89","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.21","week_end":"2023-10-14"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.49","percent_visits_covid":"2.08","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"2.8","percent_visits_covid":"1.49","percent_visits_influenza":"0.56","percent_visits_rsv":"0.75","week_end":"2023-10-28"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.23","percent_visits_covid":"1.41","percent_visits_influenza":"0.4","percent_visits_rsv":"1.41","week_end":"2023-11-04"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"3.79","percent_visits_covid":"2.35","percent_visits_influenza":"0.9","percent_visits_rsv":"0.54","week_end":"2023-11-11"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"4.4","percent_visits_covid":"0.76","percent_visits_influenza":"2.29","percent_visits_rsv":"1.34","week_end":"2023-11-18"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"7.44","percent_visits_covid":"1.53","percent_visits_influenza":"3.44","percent_visits_rsv":"2.48","week_end":"2023-11-25"}
-,{"county":"St. Francis","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Crittenden (West Memphis), AR - St. Francis, AR","hsa_counties":"Crittenden, Cross, Lee, St. Francis","percent_visits_combined":"5.65","percent_visits_covid":"1.95","percent_visits_influenza":"1.95","percent_visits_rsv":"1.75","week_end":"2023-12-02"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.51","percent_visits_covid":"2.76","percent_visits_influenza":"0.0","percent_visits_rsv":"2.76","week_end":"2022-10-01"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.16","percent_visits_covid":"1.51","percent_visits_influenza":"0.13","percent_visits_rsv":"3.52","week_end":"2022-10-08"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.26","percent_visits_covid":"0.66","percent_visits_influenza":"0.27","percent_visits_rsv":"1.33","week_end":"2022-10-15"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.15","percent_visits_covid":"0.86","percent_visits_influenza":"0.72","percent_visits_rsv":"1.72","week_end":"2022-10-22"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.31","percent_visits_covid":"0.4","percent_visits_influenza":"1.32","percent_visits_rsv":"1.59","week_end":"2022-10-29"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.52","percent_visits_covid":"1.2","percent_visits_influenza":"2.26","percent_visits_rsv":"1.06","week_end":"2022-11-05"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"5.41","percent_visits_covid":"1.08","percent_visits_influenza":"4.19","percent_visits_rsv":"0.14","week_end":"2022-11-12"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.95","percent_visits_covid":"2.66","percent_visits_influenza":"0.15","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"8.16","percent_visits_covid":"1.52","percent_visits_influenza":"6.22","percent_visits_rsv":"0.69","week_end":"2022-11-19"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"16.95","percent_visits_covid":"2.92","percent_visits_influenza":"13.58","percent_visits_rsv":"0.56","week_end":"2022-11-26"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"13.42","percent_visits_covid":"2.8","percent_visits_influenza":"10.18","percent_visits_rsv":"0.45","week_end":"2022-12-03"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"10.3","percent_visits_covid":"2.64","percent_visits_influenza":"7.53","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.67","percent_visits_covid":"2.91","percent_visits_influenza":"6.62","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"9.44","percent_visits_covid":"3.83","percent_visits_influenza":"5.46","percent_visits_rsv":"0.15","week_end":"2022-12-24"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.71","percent_visits_covid":"4.27","percent_visits_influenza":"2.07","percent_visits_rsv":"0.37","week_end":"2022-12-31"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"6.28","percent_visits_covid":"4.43","percent_visits_influenza":"1.48","percent_visits_rsv":"0.62","week_end":"2023-01-07"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.61","percent_visits_covid":"2.92","percent_visits_influenza":"0.56","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.57","percent_visits_covid":"1.66","percent_visits_influenza":"0.91","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.53","percent_visits_covid":"1.77","percent_visits_influenza":"1.77","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.16","percent_visits_covid":"2.16","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-02-04"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.78","percent_visits_covid":"1.1","percent_visits_influenza":"0.68","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"0.86","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.0","percent_visits_covid":"1.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.44","percent_visits_covid":"1.9","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-03-04"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.9","percent_visits_covid":"1.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.57","percent_visits_covid":"1.28","percent_visits_influenza":"0.14","percent_visits_rsv":"0.14","week_end":"2023-03-25"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.52","percent_visits_covid":"1.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.58","percent_visits_covid":"1.43","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.89","percent_visits_covid":"0.89","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.03","percent_visits_covid":"1.03","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.92","percent_visits_covid":"0.92","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.6","percent_visits_covid":"0.48","percent_visits_influenza":"0.0","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.72","percent_visits_covid":"0.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.76","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.37","percent_visits_covid":"0.37","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.25","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.13","percent_visits_covid":"0.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.39","percent_visits_covid":"0.39","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.43","percent_visits_covid":"0.43","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.27","percent_visits_covid":"0.27","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.5","percent_visits_covid":"0.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-07-15"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.63","percent_visits_covid":"0.63","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"0.77","percent_visits_covid":"0.38","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.18","percent_visits_covid":"0.82","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.48","percent_visits_covid":"0.95","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.91","percent_visits_covid":"1.59","percent_visits_influenza":"0.21","percent_visits_rsv":"0.11","week_end":"2023-08-19"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.49","percent_visits_covid":"3.28","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-08-26"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.71","percent_visits_covid":"3.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.64","percent_visits_covid":"4.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.09","week_end":"2023-09-09"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.39","percent_visits_covid":"3.29","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-16"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"3.18","percent_visits_covid":"2.97","percent_visits_influenza":"0.1","percent_visits_rsv":"0.1","week_end":"2023-09-23"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.59","percent_visits_covid":"2.38","percent_visits_influenza":"0.0","percent_visits_rsv":"0.22","week_end":"2023-09-30"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.65","percent_visits_covid":"1.99","percent_visits_influenza":"0.11","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.93","percent_visits_covid":"1.5","percent_visits_influenza":"0.11","percent_visits_rsv":"0.32","week_end":"2023-10-14"}
-,{"county":"Stone","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.45","percent_visits_covid":"0.67","percent_visits_influenza":"0.11","percent_visits_rsv":"0.67","week_end":"2023-10-21"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.4","percent_visits_covid":"0.43","percent_visits_influenza":"0.11","percent_visits_rsv":"0.86","week_end":"2023-10-28"}
-,{"county":"Stone","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"1.92","percent_visits_covid":"0.84","percent_visits_influenza":"0.24","percent_visits_rsv":"0.84","week_end":"2023-11-04"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.83","percent_visits_covid":"1.59","percent_visits_influenza":"0.0","percent_visits_rsv":"1.25","week_end":"2023-11-11"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"2.84","percent_visits_covid":"0.8","percent_visits_influenza":"0.11","percent_visits_rsv":"2.05","week_end":"2023-11-18"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.65","percent_visits_covid":"1.7","percent_visits_influenza":"0.23","percent_visits_rsv":"2.72","week_end":"2023-11-25"}
-,{"county":"Stone","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Independence, AR - Sharp, AR","hsa_counties":"Fulton, Independence, Izard, Sharp, Stone","percent_visits_combined":"4.77","percent_visits_covid":"2.68","percent_visits_influenza":"0.23","percent_visits_rsv":"2.1","week_end":"2023-12-02"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.47","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.47","week_end":"2022-10-01"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.63","percent_visits_covid":"0.0","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2022-10-08"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.49","percent_visits_covid":"0.0","percent_visits_influenza":"1.12","percent_visits_rsv":"3.37","week_end":"2022-10-15"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.9","percent_visits_covid":"0.63","percent_visits_influenza":"0.63","percent_visits_rsv":"1.27","week_end":"2022-10-22"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-29"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"10.6","percent_visits_covid":"1.38","percent_visits_influenza":"7.37","percent_visits_rsv":"2.3","week_end":"2022-11-05"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"15.36","percent_visits_covid":"1.12","percent_visits_influenza":"13.86","percent_visits_rsv":"0.75","week_end":"2022-11-12"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"13.21","percent_visits_covid":"0.0","percent_visits_influenza":"13.21","percent_visits_rsv":"0.0","week_end":"2022-11-19"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"8.41","percent_visits_covid":"0.47","percent_visits_influenza":"7.94","percent_visits_rsv":"0.0","week_end":"2022-11-26"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"9.09","percent_visits_covid":"0.43","percent_visits_influenza":"8.66","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"6.67","percent_visits_covid":"2.05","percent_visits_influenza":"4.62","percent_visits_rsv":"0.0","week_end":"2022-12-10"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"5.85","percent_visits_covid":"0.58","percent_visits_influenza":"5.26","percent_visits_rsv":"0.0","week_end":"2022-12-17"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.55","percent_visits_covid":"0.0","percent_visits_influenza":"2.84","percent_visits_rsv":"0.71","week_end":"2022-12-24"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.58","percent_visits_covid":"3.92","percent_visits_influenza":"1.31","percent_visits_rsv":"0.0","week_end":"2022-12-31"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.98","percent_visits_covid":"2.84","percent_visits_influenza":"0.57","percent_visits_rsv":"0.57","week_end":"2023-01-07"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.72","percent_visits_covid":"1.36","percent_visits_influenza":"1.36","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.25","percent_visits_covid":"0.62","percent_visits_influenza":"0.62","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.03","percent_visits_covid":"2.42","percent_visits_influenza":"0.61","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.59","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.17","percent_visits_covid":"3.17","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.18","percent_visits_covid":"1.18","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.7","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.53","percent_visits_covid":"0.53","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.46","percent_visits_covid":"1.46","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"1.08","week_end":"2023-04-22"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.08","percent_visits_covid":"1.08","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.93","percent_visits_covid":"0.93","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.52","percent_visits_covid":"0.52","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.65","percent_visits_covid":"0.65","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.57","percent_visits_covid":"0.0","percent_visits_influenza":"0.57","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.51","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.51","week_end":"2023-07-08"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.5","percent_visits_covid":"0.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.07","percent_visits_covid":"1.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.56","percent_visits_covid":"2.05","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.88","percent_visits_covid":"3.4","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"4.55","percent_visits_covid":"4.04","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"5.43","percent_visits_covid":"4.52","percent_visits_influenza":"0.9","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.91","percent_visits_covid":"2.91","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.07","percent_visits_covid":"2.07","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"2.62","percent_visits_covid":"2.62","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.01","percent_visits_covid":"1.01","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.09","percent_visits_covid":"3.09","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"0.95","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.19","percent_visits_covid":"2.66","percent_visits_influenza":"0.0","percent_visits_rsv":"0.53","week_end":"2023-10-28"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.61","percent_visits_covid":"3.61","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.11","percent_visits_covid":"1.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-11"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"1.91","percent_visits_covid":"1.44","percent_visits_influenza":"0.0","percent_visits_rsv":"0.48","week_end":"2023-11-18"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.33","percent_visits_covid":"1.11","percent_visits_influenza":"0.0","percent_visits_rsv":"2.22","week_end":"2023-11-25"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Sparse","geography":"Arkansas","hsa":"Union, AR - Columbia, AR","hsa_counties":"Calhoun, Columbia, Union","percent_visits_combined":"3.92","percent_visits_covid":"0.98","percent_visits_influenza":"0.0","percent_visits_rsv":"2.94","week_end":"2023-12-02"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.51","percent_visits_covid":"1.15","percent_visits_influenza":"0.38","percent_visits_rsv":"2.01","week_end":"2022-10-01"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.15","percent_visits_covid":"1.13","percent_visits_influenza":"0.77","percent_visits_rsv":"1.31","week_end":"2022-10-08"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.56","percent_visits_covid":"1.03","percent_visits_influenza":"1.09","percent_visits_rsv":"1.47","week_end":"2022-10-15"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.57","percent_visits_covid":"1.12","percent_visits_influenza":"2.3","percent_visits_rsv":"1.18","week_end":"2022-10-22"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.32","percent_visits_covid":"0.9","percent_visits_influenza":"5.04","percent_visits_rsv":"1.43","week_end":"2022-10-29"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.89","percent_visits_covid":"1.0","percent_visits_influenza":"6.13","percent_visits_rsv":"0.89","week_end":"2022-11-05"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.5","percent_visits_covid":"0.99","percent_visits_influenza":"5.89","percent_visits_rsv":"0.71","week_end":"2022-11-12"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"6.99","percent_visits_covid":"0.89","percent_visits_influenza":"5.74","percent_visits_rsv":"0.39","week_end":"2022-11-19"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.81","percent_visits_covid":"1.34","percent_visits_influenza":"6.94","percent_visits_rsv":"0.62","week_end":"2022-11-26"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"8.37","percent_visits_covid":"1.79","percent_visits_influenza":"6.1","percent_visits_rsv":"0.57","week_end":"2022-12-03"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"7.19","percent_visits_covid":"2.19","percent_visits_influenza":"4.8","percent_visits_rsv":"0.31","week_end":"2022-12-10"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.87","percent_visits_covid":"2.5","percent_visits_influenza":"3.08","percent_visits_rsv":"0.36","week_end":"2022-12-17"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.94","percent_visits_covid":"2.46","percent_visits_influenza":"2.17","percent_visits_rsv":"0.32","week_end":"2022-12-24"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.72","percent_visits_covid":"3.17","percent_visits_influenza":"2.32","percent_visits_rsv":"0.39","week_end":"2022-12-31"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"4.2","percent_visits_covid":"2.86","percent_visits_influenza":"0.93","percent_visits_rsv":"0.41","week_end":"2023-01-07"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.6","percent_visits_covid":"1.98","percent_visits_influenza":"0.52","percent_visits_rsv":"0.14","week_end":"2023-01-14"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.0","percent_visits_covid":"1.31","percent_visits_influenza":"0.42","percent_visits_rsv":"0.29","week_end":"2023-01-21"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.01","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.27","week_end":"2023-01-28"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.03","percent_visits_covid":"1.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.24","percent_visits_influenza":"0.26","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.51","percent_visits_covid":"1.21","percent_visits_influenza":"0.23","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.59","percent_visits_covid":"1.2","percent_visits_influenza":"0.31","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.25","percent_visits_covid":"0.91","percent_visits_influenza":"0.25","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.3","percent_visits_covid":"0.95","percent_visits_influenza":"0.22","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.35","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.65","percent_visits_covid":"1.02","percent_visits_influenza":"0.55","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.76","percent_visits_influenza":"0.16","percent_visits_rsv":"0.08","week_end":"2023-04-01"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.97","percent_visits_covid":"0.62","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-04-08"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.99","percent_visits_covid":"0.78","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.46","percent_visits_covid":"0.37","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.73","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-04-29"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.67","percent_visits_covid":"0.58","percent_visits_influenza":"0.05","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.62","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.61","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.43","percent_visits_covid":"0.35","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.69","percent_visits_covid":"0.49","percent_visits_influenza":"0.14","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.36","percent_visits_covid":"0.22","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.26","percent_visits_covid":"0.23","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.22","percent_visits_covid":"0.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.22","percent_visits_influenza":"0.03","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.28","percent_visits_covid":"0.25","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.33","percent_visits_covid":"0.24","percent_visits_influenza":"0.03","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.35","percent_visits_covid":"0.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"0.68","percent_visits_covid":"0.66","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.12","percent_visits_covid":"1.0","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.36","percent_visits_covid":"1.3","percent_visits_influenza":"0.0","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.05","percent_visits_covid":"1.94","percent_visits_influenza":"0.06","percent_visits_rsv":"0.06","week_end":"2023-08-19"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.51","percent_visits_covid":"2.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.24","percent_visits_covid":"3.18","percent_visits_influenza":"0.02","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.28","percent_visits_covid":"3.23","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.13","percent_visits_covid":"2.09","percent_visits_influenza":"0.02","percent_visits_rsv":"0.02","week_end":"2023-09-16"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.64","percent_visits_covid":"1.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.13","week_end":"2023-09-23"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.48","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.62","percent_visits_covid":"1.03","percent_visits_influenza":"0.19","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.14","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.43","week_end":"2023-10-14"}
-,{"county":"Van Buren","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.4","percent_visits_covid":"0.74","percent_visits_influenza":"0.12","percent_visits_rsv":"0.58","week_end":"2023-10-21"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"1.84","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"1.05","week_end":"2023-10-28"}
-,{"county":"Van Buren","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"2.09","percent_visits_covid":"0.48","percent_visits_influenza":"0.48","percent_visits_rsv":"1.16","week_end":"2023-11-04"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.57","percent_visits_covid":"0.93","percent_visits_influenza":"0.58","percent_visits_rsv":"2.08","week_end":"2023-11-11"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"3.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.38","percent_visits_rsv":"2.82","week_end":"2023-11-18"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.17","percent_visits_covid":"1.27","percent_visits_influenza":"0.73","percent_visits_rsv":"3.21","week_end":"2023-11-25"}
-,{"county":"Van Buren","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pulaski (Little Rock), AR - Faulkner, AR","hsa_counties":"Conway, Faulkner, Grant, Lonoke, Perry, Prairie, Pulaski, Saline, Van Buren","percent_visits_combined":"5.38","percent_visits_covid":"1.11","percent_visits_influenza":"0.95","percent_visits_rsv":"3.37","week_end":"2023-12-02"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2022-10-01"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.61","percent_visits_covid":"0.35","percent_visits_influenza":"0.0","percent_visits_rsv":"0.25","week_end":"2022-10-08"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.21","percent_visits_covid":"0.5","percent_visits_influenza":"0.05","percent_visits_rsv":"0.65","week_end":"2022-10-15"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.64","percent_visits_covid":"0.6","percent_visits_influenza":"0.55","percent_visits_rsv":"0.5","week_end":"2022-10-22"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.69","percent_visits_covid":"0.56","percent_visits_influenza":"0.67","percent_visits_rsv":"0.51","week_end":"2022-10-29"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.46","percent_visits_covid":"0.8","percent_visits_influenza":"1.28","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.31","percent_visits_covid":"0.47","percent_visits_influenza":"2.55","percent_visits_rsv":"0.33","week_end":"2022-11-12"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"5.75","percent_visits_covid":"0.38","percent_visits_influenza":"5.04","percent_visits_rsv":"0.38","week_end":"2022-11-19"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"9.57","percent_visits_covid":"1.25","percent_visits_influenza":"8.06","percent_visits_rsv":"0.26","week_end":"2022-11-26"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"7.84","percent_visits_covid":"1.37","percent_visits_influenza":"6.19","percent_visits_rsv":"0.35","week_end":"2022-12-03"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"5.85","percent_visits_covid":"1.51","percent_visits_influenza":"4.3","percent_visits_rsv":"0.08","week_end":"2022-12-10"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.89","percent_visits_covid":"1.79","percent_visits_influenza":"2.88","percent_visits_rsv":"0.31","week_end":"2022-12-17"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.28","percent_visits_covid":"2.28","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.36","percent_visits_covid":"1.71","percent_visits_influenza":"2.51","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"4.48","percent_visits_covid":"2.07","percent_visits_influenza":"2.24","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.27","percent_visits_covid":"1.36","percent_visits_influenza":"1.0","percent_visits_rsv":"0.0","week_end":"2023-01-07"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.63","percent_visits_influenza":"0.43","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.19","percent_visits_covid":"1.02","percent_visits_influenza":"0.18","percent_visits_rsv":"0.04","week_end":"2023-01-21"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.92","percent_visits_covid":"1.1","percent_visits_influenza":"0.72","percent_visits_rsv":"0.1","week_end":"2023-01-28"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.37","percent_visits_covid":"1.0","percent_visits_influenza":"0.16","percent_visits_rsv":"0.21","week_end":"2023-02-04"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.68","percent_visits_covid":"0.5","percent_visits_influenza":"0.09","percent_visits_rsv":"0.14","week_end":"2023-02-11"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.63","percent_visits_covid":"0.49","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.25","percent_visits_covid":"0.95","percent_visits_influenza":"0.13","percent_visits_rsv":"0.22","week_end":"2023-02-25"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.05","percent_visits_covid":"1.01","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.62","percent_visits_covid":"0.57","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.31","percent_visits_covid":"0.18","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.9","percent_visits_covid":"0.63","percent_visits_influenza":"0.22","percent_visits_rsv":"0.04","week_end":"2023-03-25"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.61","percent_visits_covid":"0.48","percent_visits_influenza":"0.04","percent_visits_rsv":"0.09","week_end":"2023-04-01"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.63","percent_visits_covid":"0.59","percent_visits_influenza":"0.0","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.44","percent_visits_influenza":"0.13","percent_visits_rsv":"0.09","week_end":"2023-04-15"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.33","percent_visits_covid":"0.29","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.45","percent_visits_covid":"0.32","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.47","percent_visits_influenza":"0.04","percent_visits_rsv":"0.13","week_end":"2023-05-06"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.38","percent_visits_covid":"0.21","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.44","percent_visits_covid":"0.31","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.43","percent_visits_covid":"0.26","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-05-27"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.37","percent_visits_covid":"0.17","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.56","percent_visits_covid":"0.38","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-06-10"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.44","percent_visits_covid":"0.31","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.21","percent_visits_covid":"0.13","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.3","percent_visits_covid":"0.09","percent_visits_influenza":"0.17","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.49","percent_visits_covid":"0.29","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.43","percent_visits_covid":"0.3","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.38","percent_visits_covid":"0.33","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"0.57","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.32","percent_visits_covid":"1.15","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.17","percent_visits_covid":"1.08","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.83","percent_visits_covid":"2.59","percent_visits_influenza":"0.24","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.17","percent_visits_covid":"2.12","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.48","percent_visits_covid":"3.41","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.46","percent_visits_covid":"1.83","percent_visits_influenza":"0.63","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.58","percent_visits_covid":"1.5","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.37","percent_visits_covid":"1.07","percent_visits_influenza":"0.15","percent_visits_rsv":"0.15","week_end":"2023-09-30"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.82","percent_visits_covid":"1.09","percent_visits_influenza":"0.73","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.56","percent_visits_covid":"0.86","percent_visits_influenza":"0.55","percent_visits_rsv":"0.16","week_end":"2023-10-14"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.0","percent_visits_covid":"1.52","percent_visits_influenza":"0.48","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.51","percent_visits_covid":"0.93","percent_visits_influenza":"0.43","percent_visits_rsv":"0.22","week_end":"2023-10-28"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.76","percent_visits_covid":"0.8","percent_visits_influenza":"0.32","percent_visits_rsv":"0.64","week_end":"2023-11-04"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"1.97","percent_visits_covid":"1.09","percent_visits_influenza":"0.58","percent_visits_rsv":"0.29","week_end":"2023-11-11"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.13","percent_visits_covid":"1.03","percent_visits_influenza":"0.37","percent_visits_rsv":"0.81","week_end":"2023-11-18"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"2.74","percent_visits_covid":"1.57","percent_visits_influenza":"0.39","percent_visits_rsv":"0.78","week_end":"2023-11-25"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Washington (Fayetteville), AR - Benton, AR","hsa_counties":"Benton, Madison, Washington","percent_visits_combined":"3.07","percent_visits_covid":"1.69","percent_visits_influenza":"0.38","percent_visits_rsv":"1.0","week_end":"2023-12-02"}
-,{"county":"White","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.24","percent_visits_covid":"1.12","percent_visits_influenza":"0.12","percent_visits_rsv":"1.0","week_end":"2022-10-01"}
-,{"county":"White","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.57","percent_visits_covid":"1.23","percent_visits_influenza":"0.49","percent_visits_rsv":"0.86","week_end":"2022-10-08"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.9","percent_visits_covid":"1.36","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.59","percent_visits_covid":"0.62","percent_visits_influenza":"1.48","percent_visits_rsv":"0.49","week_end":"2022-10-22"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.39","percent_visits_covid":"1.07","percent_visits_influenza":"2.25","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"8.16","percent_visits_covid":"1.58","percent_visits_influenza":"5.72","percent_visits_rsv":"0.97","week_end":"2022-11-05"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"5.56","percent_visits_covid":"1.45","percent_visits_influenza":"3.5","percent_visits_rsv":"0.72","week_end":"2022-11-12"}
-,{"county":"White","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.87","percent_visits_covid":"1.08","percent_visits_influenza":"4.58","percent_visits_rsv":"1.21","week_end":"2022-11-19"}
-,{"county":"White","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"7.31","percent_visits_covid":"1.97","percent_visits_influenza":"5.34","percent_visits_rsv":"0.12","week_end":"2022-11-26"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"7.89","percent_visits_covid":"2.06","percent_visits_influenza":"5.83","percent_visits_rsv":"0.12","week_end":"2022-12-03"}
-,{"county":"White","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.57","percent_visits_covid":"1.79","percent_visits_influenza":"3.82","percent_visits_rsv":"0.96","week_end":"2022-12-10"}
-,{"county":"White","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.57","percent_visits_covid":"2.28","percent_visits_influenza":"1.52","percent_visits_rsv":"0.76","week_end":"2022-12-17"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.91","percent_visits_covid":"1.62","percent_visits_influenza":"2.02","percent_visits_rsv":"0.54","week_end":"2022-12-24"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.09","percent_visits_covid":"3.82","percent_visits_influenza":"1.91","percent_visits_rsv":"0.36","week_end":"2022-12-31"}
-,{"county":"White","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.48","percent_visits_covid":"3.23","percent_visits_influenza":"1.0","percent_visits_rsv":"0.37","week_end":"2023-01-07"}
-,{"county":"White","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.83","percent_visits_covid":"2.32","percent_visits_influenza":"0.13","percent_visits_rsv":"0.39","week_end":"2023-01-14"}
-,{"county":"White","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.93","percent_visits_covid":"1.54","percent_visits_influenza":"0.26","percent_visits_rsv":"0.13","week_end":"2023-01-21"}
-,{"county":"White","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.96","percent_visits_covid":"0.69","percent_visits_influenza":"0.14","percent_visits_rsv":"0.14","week_end":"2023-01-28"}
-,{"county":"White","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.66","percent_visits_covid":"0.55","percent_visits_influenza":"0.97","percent_visits_rsv":"0.14","week_end":"2023-02-04"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.68","percent_visits_covid":"0.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-02-11"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.16","percent_visits_covid":"0.39","percent_visits_influenza":"0.26","percent_visits_rsv":"0.52","week_end":"2023-02-18"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.77","percent_visits_covid":"0.64","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.83","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-04"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-11"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.42","percent_visits_covid":"1.17","percent_visits_influenza":"0.13","percent_visits_rsv":"0.13","week_end":"2023-03-18"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.29","percent_visits_covid":"1.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.62","percent_visits_covid":"0.62","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.58","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.14","percent_visits_covid":"2.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.13","percent_visits_covid":"1.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.51","percent_visits_covid":"0.51","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.57","percent_visits_covid":"1.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.81","percent_visits_covid":"1.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"White","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.05","percent_visits_covid":"1.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"White","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.68","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"White","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.05","percent_visits_covid":"1.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.97","percent_visits_covid":"2.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.5","percent_visits_covid":"3.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.86","percent_visits_covid":"2.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.24","percent_visits_covid":"3.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.23","percent_visits_covid":"2.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.29","percent_visits_covid":"2.29","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.57","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.0","percent_visits_covid":"1.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.55","percent_visits_covid":"3.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.73","percent_visits_covid":"1.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.58","week_end":"2023-11-04"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.26","percent_visits_covid":"3.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.53","week_end":"2023-11-11"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.47","percent_visits_covid":"2.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.12","percent_visits_covid":"1.04","percent_visits_influenza":"1.04","percent_visits_rsv":"1.04","week_end":"2023-11-25"}
-,{"county":"White","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.75","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"1.17","week_end":"2023-12-02"}
-,{"county":"Woodruff","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.24","percent_visits_covid":"1.12","percent_visits_influenza":"0.12","percent_visits_rsv":"1.0","week_end":"2022-10-01"}
-,{"county":"Woodruff","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.57","percent_visits_covid":"1.23","percent_visits_influenza":"0.49","percent_visits_rsv":"0.86","week_end":"2022-10-08"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.9","percent_visits_covid":"1.36","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2022-10-15"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.59","percent_visits_covid":"0.62","percent_visits_influenza":"1.48","percent_visits_rsv":"0.49","week_end":"2022-10-22"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.39","percent_visits_covid":"1.07","percent_visits_influenza":"2.25","percent_visits_rsv":"1.19","week_end":"2022-10-29"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"8.16","percent_visits_covid":"1.58","percent_visits_influenza":"5.72","percent_visits_rsv":"0.97","week_end":"2022-11-05"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"5.56","percent_visits_covid":"1.45","percent_visits_influenza":"3.5","percent_visits_rsv":"0.72","week_end":"2022-11-12"}
-,{"county":"Woodruff","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.87","percent_visits_covid":"1.08","percent_visits_influenza":"4.58","percent_visits_rsv":"1.21","week_end":"2022-11-19"}
-,{"county":"Woodruff","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"7.31","percent_visits_covid":"1.97","percent_visits_influenza":"5.34","percent_visits_rsv":"0.12","week_end":"2022-11-26"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"7.89","percent_visits_covid":"2.06","percent_visits_influenza":"5.83","percent_visits_rsv":"0.12","week_end":"2022-12-03"}
-,{"county":"Woodruff","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.57","percent_visits_covid":"1.79","percent_visits_influenza":"3.82","percent_visits_rsv":"0.96","week_end":"2022-12-10"}
-,{"county":"Woodruff","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.57","percent_visits_covid":"2.28","percent_visits_influenza":"1.52","percent_visits_rsv":"0.76","week_end":"2022-12-17"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.91","percent_visits_covid":"1.62","percent_visits_influenza":"2.02","percent_visits_rsv":"0.54","week_end":"2022-12-24"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"6.09","percent_visits_covid":"3.82","percent_visits_influenza":"1.91","percent_visits_rsv":"0.36","week_end":"2022-12-31"}
-,{"county":"Woodruff","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.48","percent_visits_covid":"3.23","percent_visits_influenza":"1.0","percent_visits_rsv":"0.37","week_end":"2023-01-07"}
-,{"county":"Woodruff","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.83","percent_visits_covid":"2.32","percent_visits_influenza":"0.13","percent_visits_rsv":"0.39","week_end":"2023-01-14"}
-,{"county":"Woodruff","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.93","percent_visits_covid":"1.54","percent_visits_influenza":"0.26","percent_visits_rsv":"0.13","week_end":"2023-01-21"}
-,{"county":"Woodruff","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.96","percent_visits_covid":"0.69","percent_visits_influenza":"0.14","percent_visits_rsv":"0.14","week_end":"2023-01-28"}
-,{"county":"Woodruff","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.66","percent_visits_covid":"0.55","percent_visits_influenza":"0.97","percent_visits_rsv":"0.14","week_end":"2023-02-04"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.68","percent_visits_covid":"0.54","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-02-11"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.16","percent_visits_covid":"0.39","percent_visits_influenza":"0.26","percent_visits_rsv":"0.52","week_end":"2023-02-18"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.77","percent_visits_covid":"0.64","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.83","percent_visits_covid":"1.7","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-04"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.93","percent_visits_covid":"0.8","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-11"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.42","percent_visits_covid":"1.17","percent_visits_influenza":"0.13","percent_visits_rsv":"0.13","week_end":"2023-03-18"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.29","percent_visits_covid":"1.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.62","percent_visits_covid":"0.62","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.58","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.14","percent_visits_covid":"2.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.13","percent_visits_covid":"1.13","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.51","percent_visits_covid":"0.51","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.57","percent_visits_covid":"1.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.81","percent_visits_covid":"1.81","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.0","percent_visits_covid":"0.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Woodruff","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.05","percent_visits_covid":"1.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Woodruff","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.68","percent_visits_covid":"1.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Woodruff","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.05","percent_visits_covid":"1.05","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.97","percent_visits_covid":"2.97","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.5","percent_visits_covid":"3.5","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.86","percent_visits_covid":"2.86","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.24","percent_visits_covid":"3.24","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.23","percent_visits_covid":"2.23","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.29","percent_visits_covid":"2.29","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-07"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"0.57","percent_visits_covid":"0.57","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.0","percent_visits_covid":"1.0","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-21"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.55","percent_visits_covid":"3.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.73","percent_visits_covid":"1.16","percent_visits_influenza":"0.0","percent_visits_rsv":"0.58","week_end":"2023-11-04"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"4.26","percent_visits_covid":"3.72","percent_visits_influenza":"0.0","percent_visits_rsv":"0.53","week_end":"2023-11-11"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"2.47","percent_visits_covid":"2.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"3.12","percent_visits_covid":"1.04","percent_visits_influenza":"1.04","percent_visits_rsv":"1.04","week_end":"2023-11-25"}
-,{"county":"Woodruff","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"White, AR - Cleburne, AR","hsa_counties":"Cleburne, White, Woodruff","percent_visits_combined":"1.75","percent_visits_covid":"0.58","percent_visits_influenza":"0.0","percent_visits_rsv":"1.17","week_end":"2023-12-02"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"4.85","percent_visits_covid":"1.76","percent_visits_influenza":"1.76","percent_visits_rsv":"1.32","week_end":"2022-10-01"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"8.91","percent_visits_covid":"1.44","percent_visits_influenza":"7.08","percent_visits_rsv":"0.66","week_end":"2022-10-08"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"8.83","percent_visits_covid":"1.28","percent_visits_influenza":"7.17","percent_visits_rsv":"0.64","week_end":"2022-10-15"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"12.39","percent_visits_covid":"2.25","percent_visits_influenza":"8.89","percent_visits_rsv":"1.25","week_end":"2022-10-22"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"13.68","percent_visits_covid":"0.61","percent_visits_influenza":"12.09","percent_visits_rsv":"0.98","week_end":"2022-10-29"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"13.65","percent_visits_covid":"1.24","percent_visits_influenza":"11.54","percent_visits_rsv":"0.99","week_end":"2022-11-05"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"8.33","percent_visits_covid":"0.77","percent_visits_influenza":"5.9","percent_visits_rsv":"1.67","week_end":"2022-11-12"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"6.42","percent_visits_covid":"1.07","percent_visits_influenza":"3.82","percent_visits_rsv":"1.83","week_end":"2022-11-19"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"7.52","percent_visits_covid":"2.27","percent_visits_influenza":"3.83","percent_visits_rsv":"1.56","week_end":"2022-11-26"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"6.54","percent_visits_covid":"2.88","percent_visits_influenza":"3.53","percent_visits_rsv":"0.26","week_end":"2022-12-03"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"7.84","percent_visits_covid":"3.32","percent_visits_influenza":"4.25","percent_visits_rsv":"0.27","week_end":"2022-12-10"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"6.12","percent_visits_covid":"3.21","percent_visits_influenza":"1.75","percent_visits_rsv":"1.17","week_end":"2022-12-17"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"7.68","percent_visits_covid":"4.58","percent_visits_influenza":"2.78","percent_visits_rsv":"0.65","week_end":"2022-12-24"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"9.04","percent_visits_covid":"5.19","percent_visits_influenza":"3.86","percent_visits_rsv":"0.4","week_end":"2022-12-31"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"4.99","percent_visits_covid":"3.6","percent_visits_influenza":"1.25","percent_visits_rsv":"0.42","week_end":"2023-01-07"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.79","percent_visits_covid":"2.06","percent_visits_influenza":"0.59","percent_visits_rsv":"0.44","week_end":"2023-01-14"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.78","percent_visits_covid":"1.33","percent_visits_influenza":"0.0","percent_visits_rsv":"0.44","week_end":"2023-01-21"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.99","percent_visits_covid":"2.82","percent_visits_influenza":"0.17","percent_visits_rsv":"0.17","week_end":"2023-01-28"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.4","percent_visits_covid":"1.4","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.78","percent_visits_covid":"0.78","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.07","percent_visits_covid":"0.61","percent_visits_influenza":"0.46","percent_visits_rsv":"0.0","week_end":"2023-02-18"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.83","percent_visits_covid":"0.42","percent_visits_influenza":"1.41","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.37","percent_visits_covid":"0.91","percent_visits_influenza":"0.3","percent_visits_rsv":"0.15","week_end":"2023-03-04"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.6","percent_visits_covid":"0.3","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.59","percent_visits_covid":"0.15","percent_visits_influenza":"0.44","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.31","percent_visits_covid":"0.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.83","percent_visits_covid":"0.41","percent_visits_influenza":"0.41","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.88","percent_visits_covid":"1.59","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.94","percent_visits_covid":"1.64","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.68","percent_visits_covid":"0.68","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.31","percent_visits_covid":"0.31","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.17","percent_visits_covid":"0.73","percent_visits_influenza":"0.44","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.28","percent_visits_covid":"0.0","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.83","percent_visits_covid":"0.83","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.56","percent_visits_covid":"0.56","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.41","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.15","percent_visits_covid":"0.15","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.55","percent_visits_covid":"0.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.55","percent_visits_covid":"0.55","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.83","percent_visits_covid":"0.55","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.56","percent_visits_covid":"0.28","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.07","percent_visits_covid":"0.91","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.06","percent_visits_covid":"0.76","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.29","percent_visits_covid":"0.14","percent_visits_influenza":"0.0","percent_visits_rsv":"0.14","week_end":"2023-07-29"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.47","percent_visits_covid":"0.47","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.2","percent_visits_covid":"1.05","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"2.45","percent_visits_covid":"2.31","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"3.62","percent_visits_covid":"3.22","percent_visits_influenza":"0.27","percent_visits_rsv":"0.27","week_end":"2023-08-26"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.75","percent_visits_covid":"1.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-10-14"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"3.14","percent_visits_covid":"1.95","percent_visits_influenza":"1.05","percent_visits_rsv":"0.15","week_end":"2023-10-21"}
-,{"county":"Yell","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.69","percent_visits_covid":"1.38","percent_visits_influenza":"0.46","percent_visits_rsv":"0.0","week_end":"2023-10-28"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.96","percent_visits_covid":"0.8","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-11-04"}
-,{"county":"Yell","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"1.07","percent_visits_covid":"0.76","percent_visits_influenza":"0.0","percent_visits_rsv":"0.31","week_end":"2023-11-11"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"0.87","percent_visits_covid":"0.58","percent_visits_influenza":"0.29","percent_visits_rsv":"0.0","week_end":"2023-11-18"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"5.41","percent_visits_covid":"2.25","percent_visits_influenza":"1.5","percent_visits_rsv":"1.65","week_end":"2023-11-25"}
-,{"county":"Yell","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Arkansas","hsa":"Pope, AR - Yell, AR","hsa_counties":"Pope, Yell","percent_visits_combined":"5.38","percent_visits_covid":"2.62","percent_visits_influenza":"0.62","percent_visits_rsv":"2.31","week_end":"2023-12-02"}
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/filters/California.json b/packages/dashboard/examples/filters/California.json
deleted file mode 100644
index 92c477ed0b..0000000000
--- a/packages/dashboard/examples/filters/California.json
+++ /dev/null
@@ -1,212 +0,0 @@
-[
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-01"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-08"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-15"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-22"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-29"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-05"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-12"
- },
- {
- "county": "Mono",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-19"
- },
- {
- "county": "Washoe",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Nevada",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-19"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-26"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-03"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "11.06",
- "percent_visits_covid": "4.42",
- "percent_visits_influenza": "6.47",
- "percent_visits_rsv": "0.54",
- "week_end": "2022-12-10"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "No Change",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "9.08",
- "percent_visits_covid": "3.98",
- "percent_visits_influenza": "4.85",
- "percent_visits_rsv": "0.41",
- "week_end": "2022-12-17"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "9.67",
- "percent_visits_covid": "3.34",
- "percent_visits_influenza": "6.07",
- "percent_visits_rsv": "0.35",
- "week_end": "2022-12-24"
- },
- {
- "county": "Alameda",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "California",
- "hsa": "Alameda (Oakland), CA - Contra Costa, CA",
- "hsa_counties": "Alameda, Contra Costa",
- "percent_visits_combined": "8.0",
- "percent_visits_covid": "4.35",
- "percent_visits_influenza": "3.51",
- "percent_visits_rsv": "0.29",
- "week_end": "2022-12-31"
- }
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/filters/Colorado.json b/packages/dashboard/examples/filters/Colorado.json
deleted file mode 100644
index 7afc41552b..0000000000
--- a/packages/dashboard/examples/filters/Colorado.json
+++ /dev/null
@@ -1,1500 +0,0 @@
-[
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.67",
- "percent_visits_covid": "1.4",
- "percent_visits_influenza": "0.11",
- "percent_visits_rsv": "0.17",
- "week_end": "2022-10-01"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.78",
- "percent_visits_covid": "1.43",
- "percent_visits_influenza": "0.12",
- "percent_visits_rsv": "0.23",
- "week_end": "2022-10-08"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.97",
- "percent_visits_covid": "1.45",
- "percent_visits_influenza": "0.15",
- "percent_visits_rsv": "0.38",
- "week_end": "2022-10-15"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.58",
- "percent_visits_covid": "1.77",
- "percent_visits_influenza": "0.19",
- "percent_visits_rsv": "0.65",
- "week_end": "2022-10-22"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "3.47",
- "percent_visits_covid": "2.04",
- "percent_visits_influenza": "0.51",
- "percent_visits_rsv": "0.94",
- "week_end": "2022-10-29"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "5.04",
- "percent_visits_covid": "2.65",
- "percent_visits_influenza": "1.02",
- "percent_visits_rsv": "1.42",
- "week_end": "2022-11-05"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "7.16",
- "percent_visits_covid": "3.03",
- "percent_visits_influenza": "1.95",
- "percent_visits_rsv": "2.29",
- "week_end": "2022-11-12"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "9.35",
- "percent_visits_covid": "3.35",
- "percent_visits_influenza": "3.54",
- "percent_visits_rsv": "2.63",
- "week_end": "2022-11-19"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "11.13",
- "percent_visits_covid": "3.68",
- "percent_visits_influenza": "5.32",
- "percent_visits_rsv": "2.39",
- "week_end": "2022-11-26"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "10.71",
- "percent_visits_covid": "3.44",
- "percent_visits_influenza": "5.7",
- "percent_visits_rsv": "1.86",
- "week_end": "2022-12-03"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "9.27",
- "percent_visits_covid": "2.79",
- "percent_visits_influenza": "5.4",
- "percent_visits_rsv": "1.26",
- "week_end": "2022-12-10"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "8.66",
- "percent_visits_covid": "2.43",
- "percent_visits_influenza": "5.43",
- "percent_visits_rsv": "0.99",
- "week_end": "2022-12-17"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "8.05",
- "percent_visits_covid": "2.11",
- "percent_visits_influenza": "5.43",
- "percent_visits_rsv": "0.64",
- "week_end": "2022-12-24"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "6.66",
- "percent_visits_covid": "2.06",
- "percent_visits_influenza": "4.01",
- "percent_visits_rsv": "0.71",
- "week_end": "2022-12-31"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "4.4",
- "percent_visits_covid": "1.69",
- "percent_visits_influenza": "2.29",
- "percent_visits_rsv": "0.5",
- "week_end": "2023-01-07"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.48",
- "percent_visits_covid": "1.22",
- "percent_visits_influenza": "1.03",
- "percent_visits_rsv": "0.25",
- "week_end": "2023-01-14"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.32",
- "percent_visits_covid": "1.41",
- "percent_visits_influenza": "0.68",
- "percent_visits_rsv": "0.25",
- "week_end": "2023-01-21"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.01",
- "percent_visits_covid": "1.27",
- "percent_visits_influenza": "0.49",
- "percent_visits_rsv": "0.26",
- "week_end": "2023-01-28"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.21",
- "percent_visits_covid": "1.57",
- "percent_visits_influenza": "0.47",
- "percent_visits_rsv": "0.19",
- "week_end": "2023-02-04"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.29",
- "percent_visits_covid": "1.84",
- "percent_visits_influenza": "0.29",
- "percent_visits_rsv": "0.18",
- "week_end": "2023-02-11"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.31",
- "percent_visits_covid": "1.94",
- "percent_visits_influenza": "0.25",
- "percent_visits_rsv": "0.13",
- "week_end": "2023-02-18"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.39",
- "percent_visits_covid": "2.05",
- "percent_visits_influenza": "0.28",
- "percent_visits_rsv": "0.08",
- "week_end": "2023-02-25"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.09",
- "percent_visits_covid": "1.77",
- "percent_visits_influenza": "0.26",
- "percent_visits_rsv": "0.07",
- "week_end": "2023-03-04"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.81",
- "percent_visits_covid": "1.54",
- "percent_visits_influenza": "0.2",
- "percent_visits_rsv": "0.07",
- "week_end": "2023-03-11"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.53",
- "percent_visits_covid": "1.28",
- "percent_visits_influenza": "0.22",
- "percent_visits_rsv": "0.04",
- "week_end": "2023-03-18"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.55",
- "percent_visits_covid": "1.33",
- "percent_visits_influenza": "0.16",
- "percent_visits_rsv": "0.06",
- "week_end": "2023-03-25"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.5",
- "percent_visits_covid": "1.29",
- "percent_visits_influenza": "0.18",
- "percent_visits_rsv": "0.04",
- "week_end": "2023-04-01"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.31",
- "percent_visits_covid": "1.12",
- "percent_visits_influenza": "0.15",
- "percent_visits_rsv": "0.04",
- "week_end": "2023-04-08"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.21",
- "percent_visits_covid": "0.95",
- "percent_visits_influenza": "0.23",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-04-15"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.97",
- "percent_visits_covid": "0.77",
- "percent_visits_influenza": "0.19",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-04-22"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.83",
- "percent_visits_covid": "0.67",
- "percent_visits_influenza": "0.15",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-04-29"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.84",
- "percent_visits_covid": "0.68",
- "percent_visits_influenza": "0.15",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-05-06"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.84",
- "percent_visits_covid": "0.59",
- "percent_visits_influenza": "0.23",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-05-13"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.79",
- "percent_visits_covid": "0.58",
- "percent_visits_influenza": "0.2",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-05-20"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.73",
- "percent_visits_covid": "0.63",
- "percent_visits_influenza": "0.09",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-05-27"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.47",
- "percent_visits_covid": "0.35",
- "percent_visits_influenza": "0.12",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-03"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.5",
- "percent_visits_covid": "0.37",
- "percent_visits_influenza": "0.12",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-10"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.5",
- "percent_visits_covid": "0.42",
- "percent_visits_influenza": "0.07",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-17"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.48",
- "percent_visits_covid": "0.4",
- "percent_visits_influenza": "0.08",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-24"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.49",
- "percent_visits_covid": "0.45",
- "percent_visits_influenza": "0.05",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-01"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.53",
- "percent_visits_covid": "0.43",
- "percent_visits_influenza": "0.09",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-07-08"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.54",
- "percent_visits_covid": "0.47",
- "percent_visits_influenza": "0.07",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-15"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.53",
- "percent_visits_covid": "0.46",
- "percent_visits_influenza": "0.07",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-22"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.66",
- "percent_visits_covid": "0.59",
- "percent_visits_influenza": "0.04",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-07-29"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "0.82",
- "percent_visits_covid": "0.74",
- "percent_visits_influenza": "0.09",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-08-05"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.03",
- "percent_visits_covid": "0.96",
- "percent_visits_influenza": "0.06",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-08-12"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.2",
- "percent_visits_covid": "1.1",
- "percent_visits_influenza": "0.1",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-08-19"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.55",
- "percent_visits_covid": "1.43",
- "percent_visits_influenza": "0.12",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-08-26"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "No Change",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.74",
- "percent_visits_covid": "1.65",
- "percent_visits_influenza": "0.1",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-09-02"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.88",
- "percent_visits_covid": "1.75",
- "percent_visits_influenza": "0.13",
- "percent_visits_rsv": "0.01",
- "week_end": "2023-09-09"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "No Change",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.75",
- "percent_visits_covid": "1.62",
- "percent_visits_influenza": "0.09",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-09-16"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "1.96",
- "percent_visits_covid": "1.83",
- "percent_visits_influenza": "0.11",
- "percent_visits_rsv": "0.02",
- "week_end": "2023-09-23"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.09",
- "percent_visits_covid": "1.91",
- "percent_visits_influenza": "0.16",
- "percent_visits_rsv": "0.03",
- "week_end": "2023-09-30"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.26",
- "percent_visits_covid": "1.98",
- "percent_visits_influenza": "0.23",
- "percent_visits_rsv": "0.06",
- "week_end": "2023-10-07"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.65",
- "percent_visits_covid": "2.27",
- "percent_visits_influenza": "0.33",
- "percent_visits_rsv": "0.06",
- "week_end": "2023-10-14"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "Increasing",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "3.02",
- "percent_visits_covid": "2.44",
- "percent_visits_influenza": "0.5",
- "percent_visits_rsv": "0.09",
- "week_end": "2023-10-21"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "2.95",
- "percent_visits_covid": "2.3",
- "percent_visits_influenza": "0.58",
- "percent_visits_rsv": "0.09",
- "week_end": "2023-10-28"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "3.33",
- "percent_visits_covid": "2.38",
- "percent_visits_influenza": "0.9",
- "percent_visits_rsv": "0.07",
- "week_end": "2023-11-04"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "3.88",
- "percent_visits_covid": "2.25",
- "percent_visits_influenza": "1.41",
- "percent_visits_rsv": "0.26",
- "week_end": "2023-11-11"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "4.52",
- "percent_visits_covid": "2.35",
- "percent_visits_influenza": "1.92",
- "percent_visits_rsv": "0.29",
- "week_end": "2023-11-18"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "5.36",
- "percent_visits_covid": "2.36",
- "percent_visits_influenza": "2.53",
- "percent_visits_rsv": "0.56",
- "week_end": "2023-11-25"
- },
- {
- "county": "Adams",
- "ed_trends_covid": "No Change",
- "ed_trends_influenza": "Increasing",
- "ed_trends_rsv": "Increasing",
- "geography": "Colorado",
- "hsa": "Denver (Denver), CO - Jefferson, CO",
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
- "percent_visits_combined": "5.59",
- "percent_visits_covid": "2.46",
- "percent_visits_influenza": "2.69",
- "percent_visits_rsv": "0.51",
- "week_end": "2023-12-02"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-01"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-08"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-15"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-22"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-10-29"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-05"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-12"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-19"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-11-26"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-03"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-10"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-17"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-24"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2022-12-31"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-01-07"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-01-14"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-01-21"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-01-28"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-02-04"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-02-11"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-02-18"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-02-25"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-03-04"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-03-11"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-03-18"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-03-25"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-01"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-08"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-15"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-22"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-04-29"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-05-06"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-05-13"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-05-20"
- },
- {
- "county": "All",
- "ed_trends_covid": "Decreasing",
- "ed_trends_influenza": "Decreasing",
- "ed_trends_rsv": "Decreasing",
- "geography": "Colorado",
- "hsa": "All",
- "hsa_counties": "All",
- "percent_visits_combined": "2.63",
- "percent_visits_covid": "1.2",
- "percent_visits_influenza": "1.15",
- "percent_visits_rsv": "0.32",
- "week_end": "2023-01-14"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-05-27"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-03"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-10"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-17"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-06-24"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-01"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-08"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-15"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-22"
- },
- {
- "county": "Alamosa",
- "ed_trends_covid": "No Data",
- "ed_trends_influenza": "No Data",
- "ed_trends_rsv": "No Data",
- "geography": "Colorado",
- "hsa": "Alamosa, CO - Rio Grande, CO",
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
- "percent_visits_combined": "0.0",
- "percent_visits_covid": "0.0",
- "percent_visits_influenza": "0.0",
- "percent_visits_rsv": "0.0",
- "week_end": "2023-07-29"
- }
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/filters/Connecticut.json b/packages/dashboard/examples/filters/Connecticut.json
deleted file mode 100644
index 48c48d8fe7..0000000000
--- a/packages/dashboard/examples/filters/Connecticut.json
+++ /dev/null
@@ -1,559 +0,0 @@
-[{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.68","percent_visits_covid":"3.37","percent_visits_influenza":"0.11","percent_visits_rsv":"0.2","week_end":"2022-10-01"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.86","percent_visits_covid":"3.33","percent_visits_influenza":"0.21","percent_visits_rsv":"0.33","week_end":"2022-10-08"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.78","percent_visits_covid":"3.09","percent_visits_influenza":"0.28","percent_visits_rsv":"0.42","week_end":"2022-10-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.82","percent_visits_covid":"2.76","percent_visits_influenza":"0.51","percent_visits_rsv":"0.58","week_end":"2022-10-22"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.73","percent_visits_covid":"2.69","percent_visits_influenza":"1.34","percent_visits_rsv":"0.74","week_end":"2022-10-29"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.9","percent_visits_covid":"2.56","percent_visits_influenza":"2.5","percent_visits_rsv":"0.88","week_end":"2022-11-05"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.84","percent_visits_covid":"2.31","percent_visits_influenza":"2.75","percent_visits_rsv":"0.84","week_end":"2022-11-12"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.26","percent_visits_covid":"2.2","percent_visits_influenza":"3.51","percent_visits_rsv":"0.62","week_end":"2022-11-19"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"9.92","percent_visits_covid":"2.52","percent_visits_influenza":"6.98","percent_visits_rsv":"0.52","week_end":"2022-11-26"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"11.44","percent_visits_covid":"3.21","percent_visits_influenza":"8.06","percent_visits_rsv":"0.31","week_end":"2022-12-03"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"10.46","percent_visits_covid":"3.36","percent_visits_influenza":"6.96","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"9.61","percent_visits_covid":"3.82","percent_visits_influenza":"5.73","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"9.67","percent_visits_covid":"4.63","percent_visits_influenza":"5.02","percent_visits_rsv":"0.17","week_end":"2022-12-24"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.96","percent_visits_covid":"5.46","percent_visits_influenza":"3.46","percent_visits_rsv":"0.13","week_end":"2022-12-31"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.67","percent_visits_covid":"4.73","percent_visits_influenza":"1.87","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.53","percent_visits_covid":"3.77","percent_visits_influenza":"0.71","percent_visits_rsv":"0.09","week_end":"2023-01-14"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.61","percent_visits_covid":"3.1","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-01-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.14","percent_visits_covid":"2.78","percent_visits_influenza":"0.33","percent_visits_rsv":"0.04","week_end":"2023-01-28"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.74","percent_visits_covid":"2.39","percent_visits_influenza":"0.29","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.48","percent_visits_covid":"2.2","percent_visits_influenza":"0.23","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.07","percent_visits_covid":"1.8","percent_visits_influenza":"0.25","percent_visits_rsv":"0.03","week_end":"2023-02-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.85","percent_visits_covid":"1.6","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-02-25"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.49","percent_visits_covid":"1.29","percent_visits_influenza":"0.18","percent_visits_rsv":"0.03","week_end":"2023-03-04"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.31","percent_visits_covid":"1.07","percent_visits_influenza":"0.23","percent_visits_rsv":"0.01","week_end":"2023-03-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.13","percent_visits_covid":"0.91","percent_visits_influenza":"0.18","percent_visits_rsv":"0.03","week_end":"2023-03-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.01","percent_visits_covid":"0.83","percent_visits_influenza":"0.17","percent_visits_rsv":"0.02","week_end":"2023-03-25"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.11","percent_visits_covid":"0.87","percent_visits_influenza":"0.22","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.04","percent_visits_covid":"0.78","percent_visits_influenza":"0.24","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.75","percent_visits_covid":"0.61","percent_visits_influenza":"0.13","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.65","percent_visits_covid":"0.51","percent_visits_influenza":"0.13","percent_visits_rsv":"0.01","week_end":"2023-04-22"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.65","percent_visits_covid":"0.51","percent_visits_influenza":"0.14","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.61","percent_visits_covid":"0.47","percent_visits_influenza":"0.13","percent_visits_rsv":"0.01","week_end":"2023-05-06"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.59","percent_visits_covid":"0.47","percent_visits_influenza":"0.11","percent_visits_rsv":"0.01","week_end":"2023-05-13"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.57","percent_visits_covid":"0.44","percent_visits_influenza":"0.1","percent_visits_rsv":"0.02","week_end":"2023-05-20"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.71","percent_visits_covid":"0.58","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.6","percent_visits_covid":"0.55","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-06-03"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.48","percent_visits_covid":"0.41","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.52","percent_visits_covid":"0.43","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.51","percent_visits_covid":"0.45","percent_visits_influenza":"0.06","percent_visits_rsv":"0.01","week_end":"2023-06-24"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.46","percent_visits_covid":"0.39","percent_visits_influenza":"0.06","percent_visits_rsv":"0.01","week_end":"2023-07-01"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.46","percent_visits_covid":"0.42","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.52","percent_visits_covid":"0.46","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.55","percent_visits_covid":"0.52","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.8","percent_visits_covid":"0.75","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.08","percent_visits_covid":"1.03","percent_visits_influenza":"0.03","percent_visits_rsv":"0.01","week_end":"2023-08-05"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.36","percent_visits_covid":"1.32","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.57","percent_visits_covid":"1.53","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.85","percent_visits_covid":"1.73","percent_visits_influenza":"0.1","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.08","percent_visits_covid":"1.97","percent_visits_influenza":"0.09","percent_visits_rsv":"0.02","week_end":"2023-09-02"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.46","percent_visits_covid":"2.36","percent_visits_influenza":"0.09","percent_visits_rsv":"0.01","week_end":"2023-09-09"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.42","percent_visits_covid":"2.27","percent_visits_influenza":"0.14","percent_visits_rsv":"0.01","week_end":"2023-09-16"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.55","percent_visits_covid":"2.39","percent_visits_influenza":"0.12","percent_visits_rsv":"0.04","week_end":"2023-09-23"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.37","percent_visits_covid":"2.23","percent_visits_influenza":"0.11","percent_visits_rsv":"0.03","week_end":"2023-09-30"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.19","percent_visits_covid":"1.98","percent_visits_influenza":"0.12","percent_visits_rsv":"0.09","week_end":"2023-10-07"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.82","percent_visits_covid":"1.6","percent_visits_influenza":"0.09","percent_visits_rsv":"0.13","week_end":"2023-10-14"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.81","percent_visits_covid":"1.5","percent_visits_influenza":"0.13","percent_visits_rsv":"0.18","week_end":"2023-10-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.96","percent_visits_covid":"1.56","percent_visits_influenza":"0.17","percent_visits_rsv":"0.25","week_end":"2023-10-28"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.02","percent_visits_covid":"1.49","percent_visits_influenza":"0.22","percent_visits_rsv":"0.33","week_end":"2023-11-04"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.37","percent_visits_covid":"1.63","percent_visits_influenza":"0.27","percent_visits_rsv":"0.48","week_end":"2023-11-11"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.8","percent_visits_covid":"1.68","percent_visits_influenza":"0.43","percent_visits_rsv":"0.7","week_end":"2023-11-18"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.77","percent_visits_covid":"2.16","percent_visits_influenza":"0.7","percent_visits_rsv":"0.93","week_end":"2023-11-25"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.3","percent_visits_covid":"2.41","percent_visits_influenza":"1.09","percent_visits_rsv":"0.83","week_end":"2023-12-02"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.97","percent_visits_covid":"2.4","percent_visits_influenza":"0.16","percent_visits_rsv":"0.42","week_end":"2022-10-01"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"3.66","percent_visits_covid":"2.68","percent_visits_influenza":"0.44","percent_visits_rsv":"0.56","week_end":"2022-10-08"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"3.56","percent_visits_covid":"2.38","percent_visits_influenza":"0.61","percent_visits_rsv":"0.59","week_end":"2022-10-15"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"4.32","percent_visits_covid":"2.09","percent_visits_influenza":"1.44","percent_visits_rsv":"0.82","week_end":"2022-10-22"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"6.9","percent_visits_covid":"2.26","percent_visits_influenza":"3.83","percent_visits_rsv":"0.89","week_end":"2022-10-29"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"9.48","percent_visits_covid":"2.14","percent_visits_influenza":"6.17","percent_visits_rsv":"1.25","week_end":"2022-11-05"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"8.15","percent_visits_covid":"2.13","percent_visits_influenza":"4.89","percent_visits_rsv":"1.23","week_end":"2022-11-12"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"8.47","percent_visits_covid":"2.19","percent_visits_influenza":"5.37","percent_visits_rsv":"1.04","week_end":"2022-11-19"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"12.39","percent_visits_covid":"2.39","percent_visits_influenza":"9.46","percent_visits_rsv":"0.76","week_end":"2022-11-26"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"13.39","percent_visits_covid":"3.41","percent_visits_influenza":"9.79","percent_visits_rsv":"0.45","week_end":"2022-12-03"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"11.96","percent_visits_covid":"3.5","percent_visits_influenza":"8.24","percent_visits_rsv":"0.4","week_end":"2022-12-10"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"10.7","percent_visits_covid":"4.28","percent_visits_influenza":"6.37","percent_visits_rsv":"0.3","week_end":"2022-12-17"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"10.31","percent_visits_covid":"5.02","percent_visits_influenza":"5.22","percent_visits_rsv":"0.34","week_end":"2022-12-24"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"9.05","percent_visits_covid":"5.75","percent_visits_influenza":"3.25","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"6.95","percent_visits_covid":"4.95","percent_visits_influenza":"1.92","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"4.67","percent_visits_covid":"3.89","percent_visits_influenza":"0.71","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"3.97","percent_visits_covid":"3.37","percent_visits_influenza":"0.49","percent_visits_rsv":"0.12","week_end":"2023-01-21"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"3.52","percent_visits_covid":"3.22","percent_visits_influenza":"0.29","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.86","percent_visits_covid":"2.46","percent_visits_influenza":"0.33","percent_visits_rsv":"0.08","week_end":"2023-02-04"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.43","percent_visits_covid":"2.19","percent_visits_influenza":"0.21","percent_visits_rsv":"0.07","week_end":"2023-02-11"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.04","percent_visits_covid":"1.82","percent_visits_influenza":"0.21","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.15","percent_visits_covid":"1.89","percent_visits_influenza":"0.17","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.51","percent_visits_covid":"1.32","percent_visits_influenza":"0.17","percent_visits_rsv":"0.02","week_end":"2023-03-04"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.2","percent_visits_covid":"0.97","percent_visits_influenza":"0.18","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.11","percent_visits_covid":"0.88","percent_visits_influenza":"0.17","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.82","percent_visits_covid":"0.66","percent_visits_influenza":"0.13","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.12","percent_visits_covid":"0.83","percent_visits_influenza":"0.26","percent_visits_rsv":"0.04","week_end":"2023-04-01"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.86","percent_visits_covid":"0.53","percent_visits_influenza":"0.29","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.83","percent_visits_covid":"0.62","percent_visits_influenza":"0.16","percent_visits_rsv":"0.05","week_end":"2023-04-15"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.72","percent_visits_covid":"0.49","percent_visits_influenza":"0.21","percent_visits_rsv":"0.03","week_end":"2023-04-22"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.75","percent_visits_covid":"0.49","percent_visits_influenza":"0.24","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.61","percent_visits_covid":"0.34","percent_visits_influenza":"0.27","percent_visits_rsv":"0.01","week_end":"2023-05-06"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.62","percent_visits_covid":"0.41","percent_visits_influenza":"0.18","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.71","percent_visits_covid":"0.49","percent_visits_influenza":"0.17","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.8","percent_visits_covid":"0.55","percent_visits_influenza":"0.25","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.53","percent_visits_covid":"0.45","percent_visits_influenza":"0.06","percent_visits_rsv":"0.02","week_end":"2023-06-03"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.4","percent_visits_covid":"0.31","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.49","percent_visits_covid":"0.32","percent_visits_influenza":"0.15","percent_visits_rsv":"0.02","week_end":"2023-06-17"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.37","percent_visits_covid":"0.26","percent_visits_influenza":"0.06","percent_visits_rsv":"0.04","week_end":"2023-06-24"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.4","percent_visits_covid":"0.26","percent_visits_influenza":"0.13","percent_visits_rsv":"0.01","week_end":"2023-07-01"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.37","percent_visits_covid":"0.32","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.44","percent_visits_covid":"0.3","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.5","percent_visits_covid":"0.49","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.76","percent_visits_covid":"0.7","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"0.98","percent_visits_covid":"0.93","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-08-05"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.53","percent_visits_covid":"1.45","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.6","percent_visits_covid":"1.52","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.61","percent_visits_covid":"1.51","percent_visits_influenza":"0.09","percent_visits_rsv":"0.03","week_end":"2023-08-26"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.91","percent_visits_covid":"1.82","percent_visits_influenza":"0.09","percent_visits_rsv":"0.01","week_end":"2023-09-02"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.87","percent_visits_covid":"1.76","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-09-09"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.11","percent_visits_covid":"1.98","percent_visits_influenza":"0.09","percent_visits_rsv":"0.05","week_end":"2023-09-16"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.28","percent_visits_covid":"2.1","percent_visits_influenza":"0.09","percent_visits_rsv":"0.11","week_end":"2023-09-23"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.11","percent_visits_covid":"1.99","percent_visits_influenza":"0.05","percent_visits_rsv":"0.07","week_end":"2023-09-30"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.07","percent_visits_covid":"1.8","percent_visits_influenza":"0.1","percent_visits_rsv":"0.2","week_end":"2023-10-07"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.71","percent_visits_covid":"1.37","percent_visits_influenza":"0.11","percent_visits_rsv":"0.23","week_end":"2023-10-14"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.7","percent_visits_covid":"1.27","percent_visits_influenza":"0.17","percent_visits_rsv":"0.28","week_end":"2023-10-21"}
-,{"county":"Fairfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.54","percent_visits_covid":"1.17","percent_visits_influenza":"0.04","percent_visits_rsv":"0.35","week_end":"2023-10-28"}
-,{"county":"Fairfield","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"1.84","percent_visits_covid":"0.93","percent_visits_influenza":"0.19","percent_visits_rsv":"0.76","week_end":"2023-11-04"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.3","percent_visits_covid":"1.28","percent_visits_influenza":"0.28","percent_visits_rsv":"0.77","week_end":"2023-11-11"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"2.62","percent_visits_covid":"1.12","percent_visits_influenza":"0.48","percent_visits_rsv":"1.03","week_end":"2023-11-18"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"3.54","percent_visits_covid":"1.49","percent_visits_influenza":"0.66","percent_visits_rsv":"1.44","week_end":"2023-11-25"}
-,{"county":"Fairfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Fairfield, CT","hsa_counties":"Fairfield","percent_visits_combined":"4.09","percent_visits_covid":"1.66","percent_visits_influenza":"1.01","percent_visits_rsv":"1.52","week_end":"2023-12-02"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.67","percent_visits_covid":"4.45","percent_visits_influenza":"0.09","percent_visits_rsv":"0.13","week_end":"2022-10-01"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.53","percent_visits_covid":"4.11","percent_visits_influenza":"0.16","percent_visits_rsv":"0.29","week_end":"2022-10-08"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.59","percent_visits_covid":"3.98","percent_visits_influenza":"0.21","percent_visits_rsv":"0.4","week_end":"2022-10-15"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.25","percent_visits_covid":"3.47","percent_visits_influenza":"0.26","percent_visits_rsv":"0.55","week_end":"2022-10-22"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.66","percent_visits_covid":"3.32","percent_visits_influenza":"0.68","percent_visits_rsv":"0.67","week_end":"2022-10-29"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"5.59","percent_visits_covid":"3.21","percent_visits_influenza":"1.69","percent_visits_rsv":"0.73","week_end":"2022-11-05"}
-,{"county":"Hartford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"5.54","percent_visits_covid":"2.72","percent_visits_influenza":"2.25","percent_visits_rsv":"0.6","week_end":"2022-11-12"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"6.01","percent_visits_covid":"2.56","percent_visits_influenza":"3.06","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"9.61","percent_visits_covid":"2.99","percent_visits_influenza":"6.27","percent_visits_rsv":"0.41","week_end":"2022-11-26"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"11.4","percent_visits_covid":"3.95","percent_visits_influenza":"7.28","percent_visits_rsv":"0.26","week_end":"2022-12-03"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.69","percent_visits_covid":"3.99","percent_visits_influenza":"6.64","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.21","percent_visits_covid":"4.4","percent_visits_influenza":"5.77","percent_visits_rsv":"0.16","week_end":"2022-12-17"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.0","percent_visits_covid":"5.03","percent_visits_influenza":"4.97","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Hartford","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"9.75","percent_visits_covid":"6.12","percent_visits_influenza":"3.61","percent_visits_rsv":"0.09","week_end":"2022-12-31"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"7.25","percent_visits_covid":"5.24","percent_visits_influenza":"1.9","percent_visits_rsv":"0.13","week_end":"2023-01-07"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.85","percent_visits_covid":"4.08","percent_visits_influenza":"0.7","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.92","percent_visits_covid":"3.36","percent_visits_influenza":"0.5","percent_visits_rsv":"0.08","week_end":"2023-01-21"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.22","percent_visits_covid":"2.81","percent_visits_influenza":"0.36","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.07","percent_visits_covid":"2.68","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.62","percent_visits_covid":"2.33","percent_visits_influenza":"0.25","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.47","percent_visits_covid":"2.06","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.08","percent_visits_covid":"1.76","percent_visits_influenza":"0.29","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.61","percent_visits_covid":"1.43","percent_visits_influenza":"0.16","percent_visits_rsv":"0.03","week_end":"2023-03-04"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.66","percent_visits_covid":"1.35","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.3","percent_visits_covid":"1.12","percent_visits_influenza":"0.17","percent_visits_rsv":"0.01","week_end":"2023-03-18"}
-,{"county":"Hartford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.34","percent_visits_covid":"1.1","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-03-25"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.32","percent_visits_covid":"1.11","percent_visits_influenza":"0.21","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.39","percent_visits_covid":"1.06","percent_visits_influenza":"0.32","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.8","percent_visits_covid":"0.69","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.63","percent_visits_covid":"0.52","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-04-22"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.71","percent_visits_covid":"0.6","percent_visits_influenza":"0.11","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"Hartford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.75","percent_visits_covid":"0.67","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-05-06"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.72","percent_visits_covid":"0.59","percent_visits_influenza":"0.12","percent_visits_rsv":"0.01","week_end":"2023-05-13"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.58","percent_visits_covid":"0.49","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-05-20"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.81","percent_visits_covid":"0.71","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-05-27"}
-,{"county":"Hartford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.92","percent_visits_covid":"0.86","percent_visits_influenza":"0.06","percent_visits_rsv":"0.01","week_end":"2023-06-03"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.7","percent_visits_covid":"0.64","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.67","percent_visits_covid":"0.61","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.62","percent_visits_covid":"0.57","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Hartford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.56","percent_visits_covid":"0.51","percent_visits_influenza":"0.03","percent_visits_rsv":"0.01","week_end":"2023-07-01"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.61","percent_visits_covid":"0.56","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.57","percent_visits_covid":"0.53","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-07-15"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.65","percent_visits_covid":"0.62","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.94","percent_visits_covid":"0.9","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.34","percent_visits_covid":"1.3","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-08-05"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.49","percent_visits_covid":"1.44","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-08-12"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.77","percent_visits_covid":"1.75","percent_visits_influenza":"0.01","percent_visits_rsv":"0.01","week_end":"2023-08-19"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.21","percent_visits_covid":"2.12","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-08-26"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.44","percent_visits_covid":"2.34","percent_visits_influenza":"0.09","percent_visits_rsv":"0.01","week_end":"2023-09-02"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.91","percent_visits_covid":"2.86","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Hartford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.03","percent_visits_covid":"2.83","percent_visits_influenza":"0.2","percent_visits_rsv":"0.01","week_end":"2023-09-16"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.14","percent_visits_covid":"2.95","percent_visits_influenza":"0.17","percent_visits_rsv":"0.02","week_end":"2023-09-23"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.7","percent_visits_covid":"2.54","percent_visits_influenza":"0.14","percent_visits_rsv":"0.02","week_end":"2023-09-30"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.42","percent_visits_covid":"2.24","percent_visits_influenza":"0.15","percent_visits_rsv":"0.05","week_end":"2023-10-07"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.25","percent_visits_covid":"2.07","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-10-14"}
-,{"county":"Hartford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.02","percent_visits_covid":"1.75","percent_visits_influenza":"0.11","percent_visits_rsv":"0.17","week_end":"2023-10-21"}
-,{"county":"Hartford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.26","percent_visits_covid":"1.87","percent_visits_influenza":"0.22","percent_visits_rsv":"0.18","week_end":"2023-10-28"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.24","percent_visits_covid":"1.83","percent_visits_influenza":"0.22","percent_visits_rsv":"0.21","week_end":"2023-11-04"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.64","percent_visits_covid":"1.97","percent_visits_influenza":"0.27","percent_visits_rsv":"0.41","week_end":"2023-11-11"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.01","percent_visits_covid":"2.01","percent_visits_influenza":"0.32","percent_visits_rsv":"0.68","week_end":"2023-11-18"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.03","percent_visits_covid":"2.59","percent_visits_influenza":"0.61","percent_visits_rsv":"0.86","week_end":"2023-11-25"}
-,{"county":"Hartford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.55","percent_visits_covid":"2.9","percent_visits_influenza":"1.01","percent_visits_rsv":"0.66","week_end":"2023-12-02"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.9","percent_visits_covid":"2.66","percent_visits_influenza":"0.11","percent_visits_rsv":"0.14","week_end":"2022-10-01"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.89","percent_visits_covid":"2.59","percent_visits_influenza":"0.11","percent_visits_rsv":"0.2","week_end":"2022-10-08"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.63","percent_visits_covid":"2.19","percent_visits_influenza":"0.17","percent_visits_rsv":"0.28","week_end":"2022-10-15"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.72","percent_visits_covid":"2.11","percent_visits_influenza":"0.14","percent_visits_rsv":"0.47","week_end":"2022-10-22"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.19","percent_visits_covid":"2.19","percent_visits_influenza":"0.33","percent_visits_rsv":"0.69","week_end":"2022-10-29"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.42","percent_visits_covid":"1.91","percent_visits_influenza":"0.78","percent_visits_rsv":"0.75","week_end":"2022-11-05"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.23","percent_visits_covid":"1.72","percent_visits_influenza":"1.84","percent_visits_rsv":"0.73","week_end":"2022-11-12"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.71","percent_visits_covid":"1.64","percent_visits_influenza":"2.55","percent_visits_rsv":"0.55","week_end":"2022-11-19"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.5","percent_visits_covid":"2.12","percent_visits_influenza":"6.0","percent_visits_rsv":"0.47","week_end":"2022-11-26"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"10.43","percent_visits_covid":"2.36","percent_visits_influenza":"7.92","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"9.29","percent_visits_covid":"2.71","percent_visits_influenza":"6.36","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.24","percent_visits_covid":"2.87","percent_visits_influenza":"5.33","percent_visits_rsv":"0.12","week_end":"2022-12-17"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.68","percent_visits_covid":"3.96","percent_visits_influenza":"4.71","percent_visits_rsv":"0.13","week_end":"2022-12-24"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"7.78","percent_visits_covid":"4.49","percent_visits_influenza":"3.26","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"5.6","percent_visits_covid":"3.96","percent_visits_influenza":"1.61","percent_visits_rsv":"0.06","week_end":"2023-01-07"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.0","percent_visits_covid":"3.33","percent_visits_influenza":"0.65","percent_visits_rsv":"0.05","week_end":"2023-01-14"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.94","percent_visits_covid":"2.61","percent_visits_influenza":"0.28","percent_visits_rsv":"0.05","week_end":"2023-01-21"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.56","percent_visits_covid":"2.27","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.04","percent_visits_covid":"1.87","percent_visits_influenza":"0.13","percent_visits_rsv":"0.05","week_end":"2023-02-04"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.3","percent_visits_covid":"2.07","percent_visits_influenza":"0.18","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.5","percent_visits_covid":"1.35","percent_visits_influenza":"0.11","percent_visits_rsv":"0.03","week_end":"2023-02-18"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.38","percent_visits_covid":"1.25","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.13","percent_visits_covid":"0.96","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.94","percent_visits_covid":"0.84","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.91","percent_visits_covid":"0.68","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-03-18"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.73","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.85","percent_visits_covid":"0.66","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.75","percent_visits_covid":"0.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.63","percent_visits_covid":"0.5","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.57","percent_visits_covid":"0.48","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.49","percent_visits_covid":"0.39","percent_visits_influenza":"0.09","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.38","percent_visits_covid":"0.31","percent_visits_influenza":"0.07","percent_visits_rsv":"0.01","week_end":"2023-05-06"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.38","percent_visits_covid":"0.34","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.37","percent_visits_covid":"0.32","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.48","percent_visits_covid":"0.43","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-05-27"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.31","percent_visits_covid":"0.29","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.27","percent_visits_covid":"0.23","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.34","percent_visits_covid":"0.25","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.41","percent_visits_covid":"0.36","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.43","percent_visits_covid":"0.37","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-07-01"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.44","percent_visits_covid":"0.39","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-07-08"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.53","percent_visits_covid":"0.48","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.42","percent_visits_covid":"0.37","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.7","percent_visits_covid":"0.64","percent_visits_influenza":"0.05","percent_visits_rsv":"0.02","week_end":"2023-07-29"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.84","percent_visits_covid":"0.81","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.14","percent_visits_covid":"1.12","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.4","percent_visits_covid":"1.35","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-08-19"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.54","percent_visits_covid":"1.37","percent_visits_influenza":"0.14","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.85","percent_visits_covid":"1.72","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.13","percent_visits_covid":"2.0","percent_visits_influenza":"0.11","percent_visits_rsv":"0.02","week_end":"2023-09-09"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.79","percent_visits_covid":"1.69","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-09-16"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.92","percent_visits_covid":"1.83","percent_visits_influenza":"0.06","percent_visits_rsv":"0.05","week_end":"2023-09-23"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.01","percent_visits_covid":"1.85","percent_visits_influenza":"0.1","percent_visits_rsv":"0.05","week_end":"2023-09-30"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.89","percent_visits_covid":"1.72","percent_visits_influenza":"0.07","percent_visits_rsv":"0.09","week_end":"2023-10-07"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.31","percent_visits_covid":"1.13","percent_visits_influenza":"0.06","percent_visits_rsv":"0.12","week_end":"2023-10-14"}
-,{"county":"Litchfield","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.42","percent_visits_covid":"1.19","percent_visits_influenza":"0.1","percent_visits_rsv":"0.13","week_end":"2023-10-21"}
-,{"county":"Litchfield","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.74","percent_visits_covid":"1.3","percent_visits_influenza":"0.17","percent_visits_rsv":"0.28","week_end":"2023-10-28"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.76","percent_visits_covid":"1.28","percent_visits_influenza":"0.25","percent_visits_rsv":"0.23","week_end":"2023-11-04"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.99","percent_visits_covid":"1.33","percent_visits_influenza":"0.31","percent_visits_rsv":"0.36","week_end":"2023-11-11"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.5","percent_visits_covid":"1.46","percent_visits_influenza":"0.56","percent_visits_rsv":"0.51","week_end":"2023-11-18"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.31","percent_visits_covid":"1.8","percent_visits_influenza":"0.83","percent_visits_rsv":"0.69","week_end":"2023-11-25"}
-,{"county":"Litchfield","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.0","percent_visits_covid":"2.05","percent_visits_influenza":"1.3","percent_visits_rsv":"0.66","week_end":"2023-12-02"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.9","percent_visits_covid":"2.66","percent_visits_influenza":"0.11","percent_visits_rsv":"0.14","week_end":"2022-10-01"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.89","percent_visits_covid":"2.59","percent_visits_influenza":"0.11","percent_visits_rsv":"0.2","week_end":"2022-10-08"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.63","percent_visits_covid":"2.19","percent_visits_influenza":"0.17","percent_visits_rsv":"0.28","week_end":"2022-10-15"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.72","percent_visits_covid":"2.11","percent_visits_influenza":"0.14","percent_visits_rsv":"0.47","week_end":"2022-10-22"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.19","percent_visits_covid":"2.19","percent_visits_influenza":"0.33","percent_visits_rsv":"0.69","week_end":"2022-10-29"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.42","percent_visits_covid":"1.91","percent_visits_influenza":"0.78","percent_visits_rsv":"0.75","week_end":"2022-11-05"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.23","percent_visits_covid":"1.72","percent_visits_influenza":"1.84","percent_visits_rsv":"0.73","week_end":"2022-11-12"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.71","percent_visits_covid":"1.64","percent_visits_influenza":"2.55","percent_visits_rsv":"0.55","week_end":"2022-11-19"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.5","percent_visits_covid":"2.12","percent_visits_influenza":"6.0","percent_visits_rsv":"0.47","week_end":"2022-11-26"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"10.43","percent_visits_covid":"2.36","percent_visits_influenza":"7.92","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"9.29","percent_visits_covid":"2.71","percent_visits_influenza":"6.36","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.24","percent_visits_covid":"2.87","percent_visits_influenza":"5.33","percent_visits_rsv":"0.12","week_end":"2022-12-17"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.68","percent_visits_covid":"3.96","percent_visits_influenza":"4.71","percent_visits_rsv":"0.13","week_end":"2022-12-24"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"7.78","percent_visits_covid":"4.49","percent_visits_influenza":"3.26","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"5.6","percent_visits_covid":"3.96","percent_visits_influenza":"1.61","percent_visits_rsv":"0.06","week_end":"2023-01-07"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.0","percent_visits_covid":"3.33","percent_visits_influenza":"0.65","percent_visits_rsv":"0.05","week_end":"2023-01-14"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.94","percent_visits_covid":"2.61","percent_visits_influenza":"0.28","percent_visits_rsv":"0.05","week_end":"2023-01-21"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.56","percent_visits_covid":"2.27","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.04","percent_visits_covid":"1.87","percent_visits_influenza":"0.13","percent_visits_rsv":"0.05","week_end":"2023-02-04"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.3","percent_visits_covid":"2.07","percent_visits_influenza":"0.18","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.5","percent_visits_covid":"1.35","percent_visits_influenza":"0.11","percent_visits_rsv":"0.03","week_end":"2023-02-18"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.38","percent_visits_covid":"1.25","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.13","percent_visits_covid":"0.96","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.94","percent_visits_covid":"0.84","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.91","percent_visits_covid":"0.68","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-03-18"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.73","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.85","percent_visits_covid":"0.66","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.75","percent_visits_covid":"0.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.63","percent_visits_covid":"0.5","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.57","percent_visits_covid":"0.48","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.49","percent_visits_covid":"0.39","percent_visits_influenza":"0.09","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.38","percent_visits_covid":"0.31","percent_visits_influenza":"0.07","percent_visits_rsv":"0.01","week_end":"2023-05-06"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.38","percent_visits_covid":"0.34","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.37","percent_visits_covid":"0.32","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.48","percent_visits_covid":"0.43","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-05-27"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.31","percent_visits_covid":"0.29","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.27","percent_visits_covid":"0.23","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.34","percent_visits_covid":"0.25","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.41","percent_visits_covid":"0.36","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.43","percent_visits_covid":"0.37","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-07-01"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.44","percent_visits_covid":"0.39","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-07-08"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.53","percent_visits_covid":"0.48","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.42","percent_visits_covid":"0.37","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.7","percent_visits_covid":"0.64","percent_visits_influenza":"0.05","percent_visits_rsv":"0.02","week_end":"2023-07-29"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.84","percent_visits_covid":"0.81","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.14","percent_visits_covid":"1.12","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.4","percent_visits_covid":"1.35","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-08-19"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.54","percent_visits_covid":"1.37","percent_visits_influenza":"0.14","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.85","percent_visits_covid":"1.72","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.13","percent_visits_covid":"2.0","percent_visits_influenza":"0.11","percent_visits_rsv":"0.02","week_end":"2023-09-09"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.79","percent_visits_covid":"1.69","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-09-16"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.92","percent_visits_covid":"1.83","percent_visits_influenza":"0.06","percent_visits_rsv":"0.05","week_end":"2023-09-23"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.01","percent_visits_covid":"1.85","percent_visits_influenza":"0.1","percent_visits_rsv":"0.05","week_end":"2023-09-30"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.89","percent_visits_covid":"1.72","percent_visits_influenza":"0.07","percent_visits_rsv":"0.09","week_end":"2023-10-07"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.31","percent_visits_covid":"1.13","percent_visits_influenza":"0.06","percent_visits_rsv":"0.12","week_end":"2023-10-14"}
-,{"county":"Middlesex","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.42","percent_visits_covid":"1.19","percent_visits_influenza":"0.1","percent_visits_rsv":"0.13","week_end":"2023-10-21"}
-,{"county":"Middlesex","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.74","percent_visits_covid":"1.3","percent_visits_influenza":"0.17","percent_visits_rsv":"0.28","week_end":"2023-10-28"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.76","percent_visits_covid":"1.28","percent_visits_influenza":"0.25","percent_visits_rsv":"0.23","week_end":"2023-11-04"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.99","percent_visits_covid":"1.33","percent_visits_influenza":"0.31","percent_visits_rsv":"0.36","week_end":"2023-11-11"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.5","percent_visits_covid":"1.46","percent_visits_influenza":"0.56","percent_visits_rsv":"0.51","week_end":"2023-11-18"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.31","percent_visits_covid":"1.8","percent_visits_influenza":"0.83","percent_visits_rsv":"0.69","week_end":"2023-11-25"}
-,{"county":"Middlesex","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.0","percent_visits_covid":"2.05","percent_visits_influenza":"1.3","percent_visits_rsv":"0.66","week_end":"2023-12-02"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.9","percent_visits_covid":"2.66","percent_visits_influenza":"0.11","percent_visits_rsv":"0.14","week_end":"2022-10-01"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.89","percent_visits_covid":"2.59","percent_visits_influenza":"0.11","percent_visits_rsv":"0.2","week_end":"2022-10-08"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.63","percent_visits_covid":"2.19","percent_visits_influenza":"0.17","percent_visits_rsv":"0.28","week_end":"2022-10-15"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.72","percent_visits_covid":"2.11","percent_visits_influenza":"0.14","percent_visits_rsv":"0.47","week_end":"2022-10-22"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.19","percent_visits_covid":"2.19","percent_visits_influenza":"0.33","percent_visits_rsv":"0.69","week_end":"2022-10-29"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.42","percent_visits_covid":"1.91","percent_visits_influenza":"0.78","percent_visits_rsv":"0.75","week_end":"2022-11-05"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.23","percent_visits_covid":"1.72","percent_visits_influenza":"1.84","percent_visits_rsv":"0.73","week_end":"2022-11-12"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.71","percent_visits_covid":"1.64","percent_visits_influenza":"2.55","percent_visits_rsv":"0.55","week_end":"2022-11-19"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.5","percent_visits_covid":"2.12","percent_visits_influenza":"6.0","percent_visits_rsv":"0.47","week_end":"2022-11-26"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"10.43","percent_visits_covid":"2.36","percent_visits_influenza":"7.92","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"9.29","percent_visits_covid":"2.71","percent_visits_influenza":"6.36","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.24","percent_visits_covid":"2.87","percent_visits_influenza":"5.33","percent_visits_rsv":"0.12","week_end":"2022-12-17"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"8.68","percent_visits_covid":"3.96","percent_visits_influenza":"4.71","percent_visits_rsv":"0.13","week_end":"2022-12-24"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"7.78","percent_visits_covid":"4.49","percent_visits_influenza":"3.26","percent_visits_rsv":"0.15","week_end":"2022-12-31"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"5.6","percent_visits_covid":"3.96","percent_visits_influenza":"1.61","percent_visits_rsv":"0.06","week_end":"2023-01-07"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.0","percent_visits_covid":"3.33","percent_visits_influenza":"0.65","percent_visits_rsv":"0.05","week_end":"2023-01-14"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.94","percent_visits_covid":"2.61","percent_visits_influenza":"0.28","percent_visits_rsv":"0.05","week_end":"2023-01-21"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.56","percent_visits_covid":"2.27","percent_visits_influenza":"0.27","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.04","percent_visits_covid":"1.87","percent_visits_influenza":"0.13","percent_visits_rsv":"0.05","week_end":"2023-02-04"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.3","percent_visits_covid":"2.07","percent_visits_influenza":"0.18","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.5","percent_visits_covid":"1.35","percent_visits_influenza":"0.11","percent_visits_rsv":"0.03","week_end":"2023-02-18"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.38","percent_visits_covid":"1.25","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.13","percent_visits_covid":"0.96","percent_visits_influenza":"0.13","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.94","percent_visits_covid":"0.84","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.91","percent_visits_covid":"0.68","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-03-18"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.73","percent_visits_covid":"0.65","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.85","percent_visits_covid":"0.66","percent_visits_influenza":"0.19","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.75","percent_visits_covid":"0.59","percent_visits_influenza":"0.16","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.63","percent_visits_covid":"0.5","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.57","percent_visits_covid":"0.48","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.49","percent_visits_covid":"0.39","percent_visits_influenza":"0.09","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.38","percent_visits_covid":"0.31","percent_visits_influenza":"0.07","percent_visits_rsv":"0.01","week_end":"2023-05-06"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.38","percent_visits_covid":"0.34","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.37","percent_visits_covid":"0.32","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.48","percent_visits_covid":"0.43","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-05-27"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.31","percent_visits_covid":"0.29","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.27","percent_visits_covid":"0.23","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.34","percent_visits_covid":"0.25","percent_visits_influenza":"0.1","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.41","percent_visits_covid":"0.36","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.43","percent_visits_covid":"0.37","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-07-01"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.44","percent_visits_covid":"0.39","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-07-08"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.53","percent_visits_covid":"0.48","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.42","percent_visits_covid":"0.37","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.7","percent_visits_covid":"0.64","percent_visits_influenza":"0.05","percent_visits_rsv":"0.02","week_end":"2023-07-29"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"0.84","percent_visits_covid":"0.81","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.14","percent_visits_covid":"1.12","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.4","percent_visits_covid":"1.35","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-08-19"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.54","percent_visits_covid":"1.37","percent_visits_influenza":"0.14","percent_visits_rsv":"0.02","week_end":"2023-08-26"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.85","percent_visits_covid":"1.72","percent_visits_influenza":"0.09","percent_visits_rsv":"0.04","week_end":"2023-09-02"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.13","percent_visits_covid":"2.0","percent_visits_influenza":"0.11","percent_visits_rsv":"0.02","week_end":"2023-09-09"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.79","percent_visits_covid":"1.69","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-09-16"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.92","percent_visits_covid":"1.83","percent_visits_influenza":"0.06","percent_visits_rsv":"0.05","week_end":"2023-09-23"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.01","percent_visits_covid":"1.85","percent_visits_influenza":"0.1","percent_visits_rsv":"0.05","week_end":"2023-09-30"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.89","percent_visits_covid":"1.72","percent_visits_influenza":"0.07","percent_visits_rsv":"0.09","week_end":"2023-10-07"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.31","percent_visits_covid":"1.13","percent_visits_influenza":"0.06","percent_visits_rsv":"0.12","week_end":"2023-10-14"}
-,{"county":"New Haven","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.42","percent_visits_covid":"1.19","percent_visits_influenza":"0.1","percent_visits_rsv":"0.13","week_end":"2023-10-21"}
-,{"county":"New Haven","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.74","percent_visits_covid":"1.3","percent_visits_influenza":"0.17","percent_visits_rsv":"0.28","week_end":"2023-10-28"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.76","percent_visits_covid":"1.28","percent_visits_influenza":"0.25","percent_visits_rsv":"0.23","week_end":"2023-11-04"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"1.99","percent_visits_covid":"1.33","percent_visits_influenza":"0.31","percent_visits_rsv":"0.36","week_end":"2023-11-11"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"2.5","percent_visits_covid":"1.46","percent_visits_influenza":"0.56","percent_visits_rsv":"0.51","week_end":"2023-11-18"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"3.31","percent_visits_covid":"1.8","percent_visits_influenza":"0.83","percent_visits_rsv":"0.69","week_end":"2023-11-25"}
-,{"county":"New Haven","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New Haven (New Haven), CT - Litchfield, CT","hsa_counties":"Litchfield, Middlesex, New Haven","percent_visits_combined":"4.0","percent_visits_covid":"2.05","percent_visits_influenza":"1.3","percent_visits_rsv":"0.66","week_end":"2023-12-02"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"3.54","percent_visits_covid":"3.39","percent_visits_influenza":"0.03","percent_visits_rsv":"0.11","week_end":"2022-10-01"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"4.34","percent_visits_covid":"3.87","percent_visits_influenza":"0.17","percent_visits_rsv":"0.31","week_end":"2022-10-08"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"4.44","percent_visits_covid":"3.88","percent_visits_influenza":"0.08","percent_visits_rsv":"0.47","week_end":"2022-10-15"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"4.06","percent_visits_covid":"3.48","percent_visits_influenza":"0.22","percent_visits_rsv":"0.39","week_end":"2022-10-22"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"3.69","percent_visits_covid":"2.56","percent_visits_influenza":"0.41","percent_visits_rsv":"0.74","week_end":"2022-10-29"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"4.75","percent_visits_covid":"3.02","percent_visits_influenza":"0.88","percent_visits_rsv":"0.85","week_end":"2022-11-05"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"5.87","percent_visits_covid":"2.94","percent_visits_influenza":"1.91","percent_visits_rsv":"1.19","week_end":"2022-11-12"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"6.27","percent_visits_covid":"2.33","percent_visits_influenza":"3.55","percent_visits_rsv":"0.54","week_end":"2022-11-19"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"8.71","percent_visits_covid":"2.12","percent_visits_influenza":"6.18","percent_visits_rsv":"0.47","week_end":"2022-11-26"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"9.3","percent_visits_covid":"2.0","percent_visits_influenza":"7.13","percent_visits_rsv":"0.24","week_end":"2022-12-03"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"8.94","percent_visits_covid":"2.16","percent_visits_influenza":"6.76","percent_visits_rsv":"0.1","week_end":"2022-12-10"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"8.19","percent_visits_covid":"2.98","percent_visits_influenza":"5.05","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"9.55","percent_visits_covid":"3.84","percent_visits_influenza":"5.71","percent_visits_rsv":"0.06","week_end":"2022-12-24"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"9.05","percent_visits_covid":"4.92","percent_visits_influenza":"4.05","percent_visits_rsv":"0.16","week_end":"2022-12-31"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"6.66","percent_visits_covid":"4.2","percent_visits_influenza":"2.47","percent_visits_rsv":"0.05","week_end":"2023-01-07"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"4.44","percent_visits_covid":"3.41","percent_visits_influenza":"0.97","percent_visits_rsv":"0.12","week_end":"2023-01-14"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"3.41","percent_visits_covid":"2.76","percent_visits_influenza":"0.65","percent_visits_rsv":"0.0","week_end":"2023-01-21"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"3.65","percent_visits_covid":"3.04","percent_visits_influenza":"0.6","percent_visits_rsv":"0.0","week_end":"2023-01-28"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"3.18","percent_visits_covid":"2.62","percent_visits_influenza":"0.53","percent_visits_rsv":"0.07","week_end":"2023-02-04"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.55","percent_visits_covid":"2.14","percent_visits_influenza":"0.36","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.27","percent_visits_covid":"2.04","percent_visits_influenza":"0.24","percent_visits_rsv":"0.03","week_end":"2023-02-18"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.46","percent_visits_covid":"1.21","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.18","percent_visits_covid":"1.68","percent_visits_influenza":"0.51","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.26","percent_visits_covid":"0.84","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.14","percent_visits_covid":"0.89","percent_visits_influenza":"0.15","percent_visits_rsv":"0.09","week_end":"2023-03-18"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.02","percent_visits_covid":"0.66","percent_visits_influenza":"0.33","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.94","percent_visits_covid":"0.65","percent_visits_influenza":"0.26","percent_visits_rsv":"0.03","week_end":"2023-04-01"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.85","percent_visits_covid":"0.85","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.66","percent_visits_covid":"0.57","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.74","percent_visits_covid":"0.62","percent_visits_influenza":"0.12","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.68","percent_visits_covid":"0.55","percent_visits_influenza":"0.13","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.7","percent_visits_covid":"0.55","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.68","percent_visits_covid":"0.59","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.8","percent_visits_covid":"0.52","percent_visits_influenza":"0.25","percent_visits_rsv":"0.03","week_end":"2023-05-20"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.74","percent_visits_covid":"0.56","percent_visits_influenza":"0.18","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.42","percent_visits_covid":"0.36","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.47","percent_visits_covid":"0.38","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.56","percent_visits_covid":"0.53","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.66","percent_visits_covid":"0.6","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.23","percent_visits_covid":"0.15","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.11","percent_visits_covid":"0.11","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.41","percent_visits_covid":"0.41","percent_visits_influenza":"0.0","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.74","percent_visits_covid":"0.71","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.63","percent_visits_covid":"0.58","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"0.87","percent_visits_covid":"0.81","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.19","percent_visits_covid":"1.1","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.18","percent_visits_covid":"1.12","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-19"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.81","percent_visits_covid":"1.75","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-08-26"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.59","percent_visits_covid":"1.53","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-02"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.87","percent_visits_covid":"2.79","percent_visits_influenza":"0.08","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.53","percent_visits_covid":"2.42","percent_visits_influenza":"0.14","percent_visits_rsv":"0.0","week_end":"2023-09-16"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.58","percent_visits_covid":"2.38","percent_visits_influenza":"0.2","percent_visits_rsv":"0.0","week_end":"2023-09-23"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.66","percent_visits_covid":"2.57","percent_visits_influenza":"0.09","percent_visits_rsv":"0.0","week_end":"2023-09-30"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.44","percent_visits_covid":"2.15","percent_visits_influenza":"0.23","percent_visits_rsv":"0.06","week_end":"2023-10-07"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"1.82","percent_visits_covid":"1.59","percent_visits_influenza":"0.14","percent_visits_rsv":"0.09","week_end":"2023-10-14"}
-,{"county":"New London","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.35","percent_visits_covid":"1.95","percent_visits_influenza":"0.2","percent_visits_rsv":"0.2","week_end":"2023-10-21"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.21","percent_visits_covid":"1.83","percent_visits_influenza":"0.15","percent_visits_rsv":"0.24","week_end":"2023-10-28"}
-,{"county":"New London","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.24","percent_visits_covid":"1.8","percent_visits_influenza":"0.18","percent_visits_rsv":"0.29","week_end":"2023-11-04"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"2.52","percent_visits_covid":"1.78","percent_visits_influenza":"0.14","percent_visits_rsv":"0.59","week_end":"2023-11-11"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"3.27","percent_visits_covid":"2.05","percent_visits_influenza":"0.44","percent_visits_rsv":"0.77","week_end":"2023-11-18"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"4.74","percent_visits_covid":"3.04","percent_visits_influenza":"0.74","percent_visits_rsv":"0.98","week_end":"2023-11-25"}
-,{"county":"New London","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"New London, CT","hsa_counties":"New London","percent_visits_combined":"4.5","percent_visits_covid":"2.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.74","week_end":"2023-12-02"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.67","percent_visits_covid":"4.45","percent_visits_influenza":"0.09","percent_visits_rsv":"0.13","week_end":"2022-10-01"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.53","percent_visits_covid":"4.11","percent_visits_influenza":"0.16","percent_visits_rsv":"0.29","week_end":"2022-10-08"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.59","percent_visits_covid":"3.98","percent_visits_influenza":"0.21","percent_visits_rsv":"0.4","week_end":"2022-10-15"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.25","percent_visits_covid":"3.47","percent_visits_influenza":"0.26","percent_visits_rsv":"0.55","week_end":"2022-10-22"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.66","percent_visits_covid":"3.32","percent_visits_influenza":"0.68","percent_visits_rsv":"0.67","week_end":"2022-10-29"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"5.59","percent_visits_covid":"3.21","percent_visits_influenza":"1.69","percent_visits_rsv":"0.73","week_end":"2022-11-05"}
-,{"county":"Tolland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"5.54","percent_visits_covid":"2.72","percent_visits_influenza":"2.25","percent_visits_rsv":"0.6","week_end":"2022-11-12"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"6.01","percent_visits_covid":"2.56","percent_visits_influenza":"3.06","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"9.61","percent_visits_covid":"2.99","percent_visits_influenza":"6.27","percent_visits_rsv":"0.41","week_end":"2022-11-26"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"11.4","percent_visits_covid":"3.95","percent_visits_influenza":"7.28","percent_visits_rsv":"0.26","week_end":"2022-12-03"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.69","percent_visits_covid":"3.99","percent_visits_influenza":"6.64","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.21","percent_visits_covid":"4.4","percent_visits_influenza":"5.77","percent_visits_rsv":"0.16","week_end":"2022-12-17"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.0","percent_visits_covid":"5.03","percent_visits_influenza":"4.97","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Tolland","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"9.75","percent_visits_covid":"6.12","percent_visits_influenza":"3.61","percent_visits_rsv":"0.09","week_end":"2022-12-31"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"7.25","percent_visits_covid":"5.24","percent_visits_influenza":"1.9","percent_visits_rsv":"0.13","week_end":"2023-01-07"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.85","percent_visits_covid":"4.08","percent_visits_influenza":"0.7","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.92","percent_visits_covid":"3.36","percent_visits_influenza":"0.5","percent_visits_rsv":"0.08","week_end":"2023-01-21"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.22","percent_visits_covid":"2.81","percent_visits_influenza":"0.36","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.07","percent_visits_covid":"2.68","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.62","percent_visits_covid":"2.33","percent_visits_influenza":"0.25","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.47","percent_visits_covid":"2.06","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.08","percent_visits_covid":"1.76","percent_visits_influenza":"0.29","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.61","percent_visits_covid":"1.43","percent_visits_influenza":"0.16","percent_visits_rsv":"0.03","week_end":"2023-03-04"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.66","percent_visits_covid":"1.35","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.3","percent_visits_covid":"1.12","percent_visits_influenza":"0.17","percent_visits_rsv":"0.01","week_end":"2023-03-18"}
-,{"county":"Tolland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.34","percent_visits_covid":"1.1","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-03-25"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.32","percent_visits_covid":"1.11","percent_visits_influenza":"0.21","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.39","percent_visits_covid":"1.06","percent_visits_influenza":"0.32","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.8","percent_visits_covid":"0.69","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.63","percent_visits_covid":"0.52","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-04-22"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.71","percent_visits_covid":"0.6","percent_visits_influenza":"0.11","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"Tolland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.75","percent_visits_covid":"0.67","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-05-06"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.72","percent_visits_covid":"0.59","percent_visits_influenza":"0.12","percent_visits_rsv":"0.01","week_end":"2023-05-13"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.58","percent_visits_covid":"0.49","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-05-20"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.81","percent_visits_covid":"0.71","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-05-27"}
-,{"county":"Tolland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.92","percent_visits_covid":"0.86","percent_visits_influenza":"0.06","percent_visits_rsv":"0.01","week_end":"2023-06-03"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.7","percent_visits_covid":"0.64","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.67","percent_visits_covid":"0.61","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.62","percent_visits_covid":"0.57","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Tolland","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.56","percent_visits_covid":"0.51","percent_visits_influenza":"0.03","percent_visits_rsv":"0.01","week_end":"2023-07-01"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.61","percent_visits_covid":"0.56","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.57","percent_visits_covid":"0.53","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-07-15"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.65","percent_visits_covid":"0.62","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.94","percent_visits_covid":"0.9","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.34","percent_visits_covid":"1.3","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-08-05"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.49","percent_visits_covid":"1.44","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-08-12"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.77","percent_visits_covid":"1.75","percent_visits_influenza":"0.01","percent_visits_rsv":"0.01","week_end":"2023-08-19"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.21","percent_visits_covid":"2.12","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-08-26"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.44","percent_visits_covid":"2.34","percent_visits_influenza":"0.09","percent_visits_rsv":"0.01","week_end":"2023-09-02"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.91","percent_visits_covid":"2.86","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Tolland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.03","percent_visits_covid":"2.83","percent_visits_influenza":"0.2","percent_visits_rsv":"0.01","week_end":"2023-09-16"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.14","percent_visits_covid":"2.95","percent_visits_influenza":"0.17","percent_visits_rsv":"0.02","week_end":"2023-09-23"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.7","percent_visits_covid":"2.54","percent_visits_influenza":"0.14","percent_visits_rsv":"0.02","week_end":"2023-09-30"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.42","percent_visits_covid":"2.24","percent_visits_influenza":"0.15","percent_visits_rsv":"0.05","week_end":"2023-10-07"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.25","percent_visits_covid":"2.07","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-10-14"}
-,{"county":"Tolland","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.02","percent_visits_covid":"1.75","percent_visits_influenza":"0.11","percent_visits_rsv":"0.17","week_end":"2023-10-21"}
-,{"county":"Tolland","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.26","percent_visits_covid":"1.87","percent_visits_influenza":"0.22","percent_visits_rsv":"0.18","week_end":"2023-10-28"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.24","percent_visits_covid":"1.83","percent_visits_influenza":"0.22","percent_visits_rsv":"0.21","week_end":"2023-11-04"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.64","percent_visits_covid":"1.97","percent_visits_influenza":"0.27","percent_visits_rsv":"0.41","week_end":"2023-11-11"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.01","percent_visits_covid":"2.01","percent_visits_influenza":"0.32","percent_visits_rsv":"0.68","week_end":"2023-11-18"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.03","percent_visits_covid":"2.59","percent_visits_influenza":"0.61","percent_visits_rsv":"0.86","week_end":"2023-11-25"}
-,{"county":"Tolland","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.55","percent_visits_covid":"2.9","percent_visits_influenza":"1.01","percent_visits_rsv":"0.66","week_end":"2023-12-02"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.67","percent_visits_covid":"4.45","percent_visits_influenza":"0.09","percent_visits_rsv":"0.13","week_end":"2022-10-01"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.53","percent_visits_covid":"4.11","percent_visits_influenza":"0.16","percent_visits_rsv":"0.29","week_end":"2022-10-08"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.59","percent_visits_covid":"3.98","percent_visits_influenza":"0.21","percent_visits_rsv":"0.4","week_end":"2022-10-15"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.25","percent_visits_covid":"3.47","percent_visits_influenza":"0.26","percent_visits_rsv":"0.55","week_end":"2022-10-22"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.66","percent_visits_covid":"3.32","percent_visits_influenza":"0.68","percent_visits_rsv":"0.67","week_end":"2022-10-29"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"5.59","percent_visits_covid":"3.21","percent_visits_influenza":"1.69","percent_visits_rsv":"0.73","week_end":"2022-11-05"}
-,{"county":"Windham","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"5.54","percent_visits_covid":"2.72","percent_visits_influenza":"2.25","percent_visits_rsv":"0.6","week_end":"2022-11-12"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"6.01","percent_visits_covid":"2.56","percent_visits_influenza":"3.06","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"9.61","percent_visits_covid":"2.99","percent_visits_influenza":"6.27","percent_visits_rsv":"0.41","week_end":"2022-11-26"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"11.4","percent_visits_covid":"3.95","percent_visits_influenza":"7.28","percent_visits_rsv":"0.26","week_end":"2022-12-03"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.69","percent_visits_covid":"3.99","percent_visits_influenza":"6.64","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.21","percent_visits_covid":"4.4","percent_visits_influenza":"5.77","percent_visits_rsv":"0.16","week_end":"2022-12-17"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"10.0","percent_visits_covid":"5.03","percent_visits_influenza":"4.97","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Windham","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"9.75","percent_visits_covid":"6.12","percent_visits_influenza":"3.61","percent_visits_rsv":"0.09","week_end":"2022-12-31"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"7.25","percent_visits_covid":"5.24","percent_visits_influenza":"1.9","percent_visits_rsv":"0.13","week_end":"2023-01-07"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.85","percent_visits_covid":"4.08","percent_visits_influenza":"0.7","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.92","percent_visits_covid":"3.36","percent_visits_influenza":"0.5","percent_visits_rsv":"0.08","week_end":"2023-01-21"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.22","percent_visits_covid":"2.81","percent_visits_influenza":"0.36","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.07","percent_visits_covid":"2.68","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.62","percent_visits_covid":"2.33","percent_visits_influenza":"0.25","percent_visits_rsv":"0.04","week_end":"2023-02-11"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.47","percent_visits_covid":"2.06","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.08","percent_visits_covid":"1.76","percent_visits_influenza":"0.29","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.61","percent_visits_covid":"1.43","percent_visits_influenza":"0.16","percent_visits_rsv":"0.03","week_end":"2023-03-04"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.66","percent_visits_covid":"1.35","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.3","percent_visits_covid":"1.12","percent_visits_influenza":"0.17","percent_visits_rsv":"0.01","week_end":"2023-03-18"}
-,{"county":"Windham","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.34","percent_visits_covid":"1.1","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-03-25"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.32","percent_visits_covid":"1.11","percent_visits_influenza":"0.21","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.39","percent_visits_covid":"1.06","percent_visits_influenza":"0.32","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.8","percent_visits_covid":"0.69","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.63","percent_visits_covid":"0.52","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-04-22"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.71","percent_visits_covid":"0.6","percent_visits_influenza":"0.11","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"Windham","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.75","percent_visits_covid":"0.67","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-05-06"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.72","percent_visits_covid":"0.59","percent_visits_influenza":"0.12","percent_visits_rsv":"0.01","week_end":"2023-05-13"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.58","percent_visits_covid":"0.49","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-05-20"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.81","percent_visits_covid":"0.71","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-05-27"}
-,{"county":"Windham","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.92","percent_visits_covid":"0.86","percent_visits_influenza":"0.06","percent_visits_rsv":"0.01","week_end":"2023-06-03"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.7","percent_visits_covid":"0.64","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.67","percent_visits_covid":"0.61","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.62","percent_visits_covid":"0.57","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Windham","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.56","percent_visits_covid":"0.51","percent_visits_influenza":"0.03","percent_visits_rsv":"0.01","week_end":"2023-07-01"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.61","percent_visits_covid":"0.56","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.57","percent_visits_covid":"0.53","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-07-15"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.65","percent_visits_covid":"0.62","percent_visits_influenza":"0.02","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"0.94","percent_visits_covid":"0.9","percent_visits_influenza":"0.04","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.34","percent_visits_covid":"1.3","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-08-05"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.49","percent_visits_covid":"1.44","percent_visits_influenza":"0.05","percent_visits_rsv":"0.01","week_end":"2023-08-12"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"1.77","percent_visits_covid":"1.75","percent_visits_influenza":"0.01","percent_visits_rsv":"0.01","week_end":"2023-08-19"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.21","percent_visits_covid":"2.12","percent_visits_influenza":"0.08","percent_visits_rsv":"0.01","week_end":"2023-08-26"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.44","percent_visits_covid":"2.34","percent_visits_influenza":"0.09","percent_visits_rsv":"0.01","week_end":"2023-09-02"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.91","percent_visits_covid":"2.86","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-09-09"}
-,{"county":"Windham","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.03","percent_visits_covid":"2.83","percent_visits_influenza":"0.2","percent_visits_rsv":"0.01","week_end":"2023-09-16"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.14","percent_visits_covid":"2.95","percent_visits_influenza":"0.17","percent_visits_rsv":"0.02","week_end":"2023-09-23"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.7","percent_visits_covid":"2.54","percent_visits_influenza":"0.14","percent_visits_rsv":"0.02","week_end":"2023-09-30"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.42","percent_visits_covid":"2.24","percent_visits_influenza":"0.15","percent_visits_rsv":"0.05","week_end":"2023-10-07"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.25","percent_visits_covid":"2.07","percent_visits_influenza":"0.09","percent_visits_rsv":"0.09","week_end":"2023-10-14"}
-,{"county":"Windham","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.02","percent_visits_covid":"1.75","percent_visits_influenza":"0.11","percent_visits_rsv":"0.17","week_end":"2023-10-21"}
-,{"county":"Windham","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.26","percent_visits_covid":"1.87","percent_visits_influenza":"0.22","percent_visits_rsv":"0.18","week_end":"2023-10-28"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.24","percent_visits_covid":"1.83","percent_visits_influenza":"0.22","percent_visits_rsv":"0.21","week_end":"2023-11-04"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"2.64","percent_visits_covid":"1.97","percent_visits_influenza":"0.27","percent_visits_rsv":"0.41","week_end":"2023-11-11"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"3.01","percent_visits_covid":"2.01","percent_visits_influenza":"0.32","percent_visits_rsv":"0.68","week_end":"2023-11-18"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.03","percent_visits_covid":"2.59","percent_visits_influenza":"0.61","percent_visits_rsv":"0.86","week_end":"2023-11-25"}
-,{"county":"Windham","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Connecticut","hsa":"Hartford (Hartford), CT - Tolland, CT","hsa_counties":"Hartford, Tolland, Windham","percent_visits_combined":"4.55","percent_visits_covid":"2.9","percent_visits_influenza":"1.01","percent_visits_rsv":"0.66","week_end":"2023-12-02"}
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/filters/Delaware.json b/packages/dashboard/examples/filters/Delaware.json
deleted file mode 100644
index 9beb734af1..0000000000
--- a/packages/dashboard/examples/filters/Delaware.json
+++ /dev/null
@@ -1,63 +0,0 @@
-[{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.63","percent_visits_covid":"2.68","percent_visits_influenza":"0.08","percent_visits_rsv":"0.88","week_end":"2022-10-01"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.85","percent_visits_covid":"2.37","percent_visits_influenza":"0.2","percent_visits_rsv":"1.29","week_end":"2022-10-08"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.5","percent_visits_covid":"2.26","percent_visits_influenza":"0.28","percent_visits_rsv":"2.02","week_end":"2022-10-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.61","percent_visits_covid":"1.74","percent_visits_influenza":"0.54","percent_visits_rsv":"2.37","week_end":"2022-10-22"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.72","percent_visits_covid":"1.81","percent_visits_influenza":"1.58","percent_visits_rsv":"2.43","week_end":"2022-10-29"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.07","percent_visits_covid":"1.69","percent_visits_influenza":"3.87","percent_visits_rsv":"2.61","week_end":"2022-11-05"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.17","percent_visits_covid":"1.65","percent_visits_influenza":"4.44","percent_visits_rsv":"2.13","week_end":"2022-11-12"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.49","percent_visits_covid":"1.33","percent_visits_influenza":"5.01","percent_visits_rsv":"1.2","week_end":"2022-11-19"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"11.32","percent_visits_covid":"2.12","percent_visits_influenza":"8.35","percent_visits_rsv":"1.0","week_end":"2022-11-26"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"10.84","percent_visits_covid":"2.27","percent_visits_influenza":"7.77","percent_visits_rsv":"0.95","week_end":"2022-12-03"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"10.28","percent_visits_covid":"2.47","percent_visits_influenza":"7.35","percent_visits_rsv":"0.6","week_end":"2022-12-10"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"9.86","percent_visits_covid":"2.97","percent_visits_influenza":"6.56","percent_visits_rsv":"0.53","week_end":"2022-12-17"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"8.97","percent_visits_covid":"3.34","percent_visits_influenza":"5.38","percent_visits_rsv":"0.36","week_end":"2022-12-24"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"9.0","percent_visits_covid":"4.43","percent_visits_influenza":"4.42","percent_visits_rsv":"0.28","week_end":"2022-12-31"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.77","percent_visits_covid":"4.14","percent_visits_influenza":"2.29","percent_visits_rsv":"0.39","week_end":"2023-01-07"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.08","percent_visits_covid":"3.03","percent_visits_influenza":"0.91","percent_visits_rsv":"0.16","week_end":"2023-01-14"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.48","percent_visits_covid":"2.72","percent_visits_influenza":"0.62","percent_visits_rsv":"0.15","week_end":"2023-01-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.11","percent_visits_covid":"2.66","percent_visits_influenza":"0.29","percent_visits_rsv":"0.18","week_end":"2023-01-28"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.27","percent_visits_covid":"3.01","percent_visits_influenza":"0.13","percent_visits_rsv":"0.15","week_end":"2023-02-04"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.78","percent_visits_covid":"2.48","percent_visits_influenza":"0.2","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.54","percent_visits_covid":"2.3","percent_visits_influenza":"0.11","percent_visits_rsv":"0.15","week_end":"2023-02-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.94","percent_visits_covid":"1.77","percent_visits_influenza":"0.11","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.48","percent_visits_covid":"1.28","percent_visits_influenza":"0.14","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.29","percent_visits_covid":"1.19","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.35","percent_visits_covid":"1.21","percent_visits_influenza":"0.06","percent_visits_rsv":"0.09","week_end":"2023-03-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.92","percent_visits_covid":"0.84","percent_visits_influenza":"0.07","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.7","percent_visits_covid":"0.58","percent_visits_influenza":"0.11","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.66","percent_visits_covid":"0.64","percent_visits_influenza":"0.01","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.61","percent_visits_covid":"0.51","percent_visits_influenza":"0.07","percent_visits_rsv":"0.03","week_end":"2023-04-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.45","percent_visits_covid":"0.37","percent_visits_influenza":"0.04","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.33","percent_visits_covid":"0.25","percent_visits_influenza":"0.07","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.39","percent_visits_covid":"0.3","percent_visits_influenza":"0.08","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.42","percent_visits_covid":"0.32","percent_visits_influenza":"0.06","percent_visits_rsv":"0.05","week_end":"2023-05-13"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.46","percent_visits_covid":"0.39","percent_visits_influenza":"0.07","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.34","percent_visits_covid":"0.28","percent_visits_influenza":"0.06","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.34","percent_visits_covid":"0.25","percent_visits_influenza":"0.07","percent_visits_rsv":"0.02","week_end":"2023-06-03"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.39","percent_visits_covid":"0.35","percent_visits_influenza":"0.04","percent_visits_rsv":"0.01","week_end":"2023-06-10"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.39","percent_visits_covid":"0.36","percent_visits_influenza":"0.03","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.32","percent_visits_covid":"0.25","percent_visits_influenza":"0.05","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.45","percent_visits_covid":"0.41","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.45","percent_visits_covid":"0.38","percent_visits_influenza":"0.04","percent_visits_rsv":"0.03","week_end":"2023-07-08"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.66","percent_visits_covid":"0.6","percent_visits_influenza":"0.05","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.72","percent_visits_covid":"0.68","percent_visits_influenza":"0.05","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"0.92","percent_visits_covid":"0.84","percent_visits_influenza":"0.06","percent_visits_rsv":"0.02","week_end":"2023-07-29"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.12","percent_visits_covid":"1.04","percent_visits_influenza":"0.05","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.13","percent_visits_covid":"1.07","percent_visits_influenza":"0.06","percent_visits_rsv":"0.02","week_end":"2023-08-12"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.48","percent_visits_covid":"1.39","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-08-19"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.2","percent_visits_covid":"1.16","percent_visits_influenza":"0.02","percent_visits_rsv":"0.03","week_end":"2023-08-26"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.48","percent_visits_covid":"1.39","percent_visits_influenza":"0.05","percent_visits_rsv":"0.05","week_end":"2023-09-02"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.98","percent_visits_covid":"1.79","percent_visits_influenza":"0.13","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.15","percent_visits_covid":"1.97","percent_visits_influenza":"0.05","percent_visits_rsv":"0.14","week_end":"2023-09-16"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.16","percent_visits_covid":"1.93","percent_visits_influenza":"0.08","percent_visits_rsv":"0.16","week_end":"2023-09-23"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.97","percent_visits_covid":"1.68","percent_visits_influenza":"0.1","percent_visits_rsv":"0.2","week_end":"2023-09-30"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.99","percent_visits_covid":"1.47","percent_visits_influenza":"0.13","percent_visits_rsv":"0.4","week_end":"2023-10-07"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.88","percent_visits_covid":"1.32","percent_visits_influenza":"0.06","percent_visits_rsv":"0.51","week_end":"2023-10-14"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.1","percent_visits_covid":"1.13","percent_visits_influenza":"0.22","percent_visits_rsv":"0.76","week_end":"2023-10-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.66","percent_visits_covid":"1.31","percent_visits_influenza":"0.13","percent_visits_rsv":"1.24","week_end":"2023-10-28"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.66","percent_visits_covid":"1.15","percent_visits_influenza":"0.12","percent_visits_rsv":"1.4","week_end":"2023-11-04"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.45","percent_visits_covid":"1.11","percent_visits_influenza":"0.33","percent_visits_rsv":"2.07","week_end":"2023-11-11"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.95","percent_visits_covid":"1.29","percent_visits_influenza":"0.44","percent_visits_rsv":"2.28","week_end":"2023-11-18"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.57","percent_visits_covid":"1.66","percent_visits_influenza":"0.66","percent_visits_rsv":"2.29","week_end":"2023-11-25"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Delaware","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.8","percent_visits_covid":"2.17","percent_visits_influenza":"0.77","percent_visits_rsv":"1.92","week_end":"2023-12-02"}
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/filters/DistrictofColumbia.json b/packages/dashboard/examples/filters/DistrictofColumbia.json
deleted file mode 100644
index ecbdfde41b..0000000000
--- a/packages/dashboard/examples/filters/DistrictofColumbia.json
+++ /dev/null
@@ -1,63 +0,0 @@
-[{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"3.12","percent_visits_covid":"1.75","percent_visits_influenza":"0.1","percent_visits_rsv":"1.28","week_end":"2022-10-01"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"3.28","percent_visits_covid":"1.44","percent_visits_influenza":"0.22","percent_visits_rsv":"1.64","week_end":"2022-10-08"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"3.27","percent_visits_covid":"1.23","percent_visits_influenza":"0.29","percent_visits_rsv":"1.78","week_end":"2022-10-15"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"4.36","percent_visits_covid":"1.6","percent_visits_influenza":"0.91","percent_visits_rsv":"1.97","week_end":"2022-10-22"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"6.2","percent_visits_covid":"1.67","percent_visits_influenza":"2.55","percent_visits_rsv":"2.11","week_end":"2022-10-29"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"7.43","percent_visits_covid":"1.93","percent_visits_influenza":"3.68","percent_visits_rsv":"2.0","week_end":"2022-11-05"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"7.58","percent_visits_covid":"1.7","percent_visits_influenza":"4.32","percent_visits_rsv":"1.77","week_end":"2022-11-12"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"8.25","percent_visits_covid":"2.09","percent_visits_influenza":"5.05","percent_visits_rsv":"1.26","week_end":"2022-11-19"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"10.3","percent_visits_covid":"2.51","percent_visits_influenza":"6.99","percent_visits_rsv":"0.98","week_end":"2022-11-26"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"8.78","percent_visits_covid":"2.58","percent_visits_influenza":"5.62","percent_visits_rsv":"0.71","week_end":"2022-12-03"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"7.56","percent_visits_covid":"3.34","percent_visits_influenza":"3.77","percent_visits_rsv":"0.61","week_end":"2022-12-10"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"7.14","percent_visits_covid":"3.86","percent_visits_influenza":"2.76","percent_visits_rsv":"0.62","week_end":"2022-12-17"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"6.88","percent_visits_covid":"4.55","percent_visits_influenza":"1.99","percent_visits_rsv":"0.51","week_end":"2022-12-24"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"7.19","percent_visits_covid":"5.27","percent_visits_influenza":"1.55","percent_visits_rsv":"0.5","week_end":"2022-12-31"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"5.47","percent_visits_covid":"4.06","percent_visits_influenza":"1.03","percent_visits_rsv":"0.45","week_end":"2023-01-07"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"4.52","percent_visits_covid":"3.77","percent_visits_influenza":"0.53","percent_visits_rsv":"0.36","week_end":"2023-01-14"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"3.65","percent_visits_covid":"3.02","percent_visits_influenza":"0.39","percent_visits_rsv":"0.27","week_end":"2023-01-21"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"3.24","percent_visits_covid":"2.64","percent_visits_influenza":"0.43","percent_visits_rsv":"0.2","week_end":"2023-01-28"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.3","percent_visits_covid":"2.02","percent_visits_influenza":"0.22","percent_visits_rsv":"0.07","week_end":"2023-02-04"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.3","percent_visits_covid":"1.91","percent_visits_influenza":"0.31","percent_visits_rsv":"0.12","week_end":"2023-02-11"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.04","percent_visits_covid":"1.78","percent_visits_influenza":"0.19","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.65","percent_visits_covid":"1.27","percent_visits_influenza":"0.29","percent_visits_rsv":"0.08","week_end":"2023-02-25"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.49","percent_visits_covid":"1.12","percent_visits_influenza":"0.33","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.93","percent_visits_covid":"0.66","percent_visits_influenza":"0.2","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.05","percent_visits_covid":"0.7","percent_visits_influenza":"0.24","percent_visits_rsv":"0.12","week_end":"2023-03-18"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.13","percent_visits_covid":"0.82","percent_visits_influenza":"0.27","percent_visits_rsv":"0.06","week_end":"2023-03-25"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.1","percent_visits_covid":"0.65","percent_visits_influenza":"0.43","percent_visits_rsv":"0.09","week_end":"2023-04-01"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.96","percent_visits_covid":"0.68","percent_visits_influenza":"0.26","percent_visits_rsv":"0.03","week_end":"2023-04-08"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.73","percent_visits_covid":"0.48","percent_visits_influenza":"0.19","percent_visits_rsv":"0.05","week_end":"2023-04-15"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.54","percent_visits_covid":"0.4","percent_visits_influenza":"0.08","percent_visits_rsv":"0.06","week_end":"2023-04-22"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.55","percent_visits_covid":"0.35","percent_visits_influenza":"0.14","percent_visits_rsv":"0.06","week_end":"2023-04-29"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.59","percent_visits_covid":"0.45","percent_visits_influenza":"0.1","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.59","percent_visits_covid":"0.44","percent_visits_influenza":"0.12","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.63","percent_visits_covid":"0.45","percent_visits_influenza":"0.14","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.68","percent_visits_covid":"0.46","percent_visits_influenza":"0.2","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.52","percent_visits_covid":"0.33","percent_visits_influenza":"0.13","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.64","percent_visits_covid":"0.49","percent_visits_influenza":"0.1","percent_visits_rsv":"0.05","week_end":"2023-06-10"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.39","percent_visits_covid":"0.31","percent_visits_influenza":"0.07","percent_visits_rsv":"0.01","week_end":"2023-06-17"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.65","percent_visits_covid":"0.5","percent_visits_influenza":"0.13","percent_visits_rsv":"0.01","week_end":"2023-06-24"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.56","percent_visits_covid":"0.49","percent_visits_influenza":"0.04","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.74","percent_visits_covid":"0.57","percent_visits_influenza":"0.14","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.58","percent_visits_covid":"0.48","percent_visits_influenza":"0.08","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.61","percent_visits_covid":"0.49","percent_visits_influenza":"0.08","percent_visits_rsv":"0.04","week_end":"2023-07-22"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"0.82","percent_visits_covid":"0.71","percent_visits_influenza":"0.1","percent_visits_rsv":"0.01","week_end":"2023-07-29"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.08","percent_visits_covid":"1.0","percent_visits_influenza":"0.05","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.42","percent_visits_covid":"1.28","percent_visits_influenza":"0.07","percent_visits_rsv":"0.08","week_end":"2023-08-12"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.71","percent_visits_covid":"1.52","percent_visits_influenza":"0.12","percent_visits_rsv":"0.07","week_end":"2023-08-19"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.14","percent_visits_covid":"1.86","percent_visits_influenza":"0.13","percent_visits_rsv":"0.15","week_end":"2023-08-26"}
-,{"county":"District of Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.47","percent_visits_covid":"2.25","percent_visits_influenza":"0.04","percent_visits_rsv":"0.2","week_end":"2023-09-02"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"3.02","percent_visits_covid":"2.77","percent_visits_influenza":"0.09","percent_visits_rsv":"0.19","week_end":"2023-09-09"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.59","percent_visits_covid":"2.27","percent_visits_influenza":"0.1","percent_visits_rsv":"0.22","week_end":"2023-09-16"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.43","percent_visits_covid":"2.05","percent_visits_influenza":"0.13","percent_visits_rsv":"0.27","week_end":"2023-09-23"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.89","percent_visits_covid":"1.47","percent_visits_influenza":"0.12","percent_visits_rsv":"0.32","week_end":"2023-09-30"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"1.98","percent_visits_covid":"1.17","percent_visits_influenza":"0.15","percent_visits_rsv":"0.72","week_end":"2023-10-07"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.24","percent_visits_covid":"1.1","percent_visits_influenza":"0.16","percent_visits_rsv":"1.01","week_end":"2023-10-14"}
-,{"county":"District of Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.76","percent_visits_covid":"1.28","percent_visits_influenza":"0.11","percent_visits_rsv":"1.38","week_end":"2023-10-21"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.69","percent_visits_covid":"1.13","percent_visits_influenza":"0.07","percent_visits_rsv":"1.52","week_end":"2023-10-28"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.5","percent_visits_covid":"0.91","percent_visits_influenza":"0.2","percent_visits_rsv":"1.44","week_end":"2023-11-04"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.96","percent_visits_covid":"1.04","percent_visits_influenza":"0.34","percent_visits_rsv":"1.62","week_end":"2023-11-11"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.79","percent_visits_covid":"1.03","percent_visits_influenza":"0.36","percent_visits_rsv":"1.46","week_end":"2023-11-18"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"3.08","percent_visits_covid":"1.02","percent_visits_influenza":"0.66","percent_visits_rsv":"1.5","week_end":"2023-11-25"}
-,{"county":"District of Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"District of Columbia","hsa":"District of Columbia, DC","hsa_counties":"District of Columbia","percent_visits_combined":"2.83","percent_visits_covid":"1.1","percent_visits_influenza":"0.72","percent_visits_rsv":"1.01","week_end":"2023-12-02"}
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/filters/Florida.json b/packages/dashboard/examples/filters/Florida.json
deleted file mode 100644
index 3e3ffd1e73..0000000000
--- a/packages/dashboard/examples/filters/Florida.json
+++ /dev/null
@@ -1,4217 +0,0 @@
-[{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.39","percent_visits_covid":"3.67","percent_visits_influenza":"0.59","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Alachua","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Alachua","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Alachua","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.8","percent_visits_covid":"1.52","percent_visits_influenza":"0.67","percent_visits_rsv":"0.64","week_end":"2022-10-01"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.24","percent_visits_covid":"1.14","percent_visits_influenza":"0.65","percent_visits_rsv":"0.47","week_end":"2022-10-08"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.26","percent_visits_covid":"1.06","percent_visits_influenza":"0.78","percent_visits_rsv":"0.44","week_end":"2022-10-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.69","percent_visits_covid":"1.07","percent_visits_influenza":"1.2","percent_visits_rsv":"0.44","week_end":"2022-10-22"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.68","percent_visits_covid":"1.17","percent_visits_influenza":"2.06","percent_visits_rsv":"0.48","week_end":"2022-10-29"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.58","percent_visits_covid":"1.21","percent_visits_influenza":"2.93","percent_visits_rsv":"0.47","week_end":"2022-11-05"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.04","percent_visits_covid":"1.23","percent_visits_influenza":"3.36","percent_visits_rsv":"0.49","week_end":"2022-11-12"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.49","percent_visits_covid":"1.24","percent_visits_influenza":"2.88","percent_visits_rsv":"0.42","week_end":"2022-11-19"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.57","percent_visits_covid":"1.59","percent_visits_influenza":"3.64","percent_visits_rsv":"0.42","week_end":"2022-11-26"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.5","percent_visits_covid":"1.91","percent_visits_influenza":"3.32","percent_visits_rsv":"0.35","week_end":"2022-12-03"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.57","percent_visits_covid":"2.08","percent_visits_influenza":"3.28","percent_visits_rsv":"0.27","week_end":"2022-12-10"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.31","percent_visits_covid":"2.41","percent_visits_influenza":"3.73","percent_visits_rsv":"0.26","week_end":"2022-12-17"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.87","percent_visits_covid":"2.75","percent_visits_influenza":"3.96","percent_visits_rsv":"0.27","week_end":"2022-12-24"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"7.5","percent_visits_covid":"3.65","percent_visits_influenza":"3.73","percent_visits_rsv":"0.24","week_end":"2022-12-31"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"6.27","percent_visits_covid":"3.44","percent_visits_influenza":"2.71","percent_visits_rsv":"0.22","week_end":"2023-01-07"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.72","percent_visits_covid":"2.85","percent_visits_influenza":"1.79","percent_visits_rsv":"0.16","week_end":"2023-01-14"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.26","percent_visits_covid":"2.61","percent_visits_influenza":"1.56","percent_visits_rsv":"0.14","week_end":"2023-01-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.9","percent_visits_covid":"2.47","percent_visits_influenza":"1.36","percent_visits_rsv":"0.12","week_end":"2023-01-28"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.47","percent_visits_covid":"2.23","percent_visits_influenza":"1.17","percent_visits_rsv":"0.11","week_end":"2023-02-04"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.95","percent_visits_covid":"1.93","percent_visits_influenza":"0.94","percent_visits_rsv":"0.11","week_end":"2023-02-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.65","percent_visits_covid":"1.76","percent_visits_influenza":"0.81","percent_visits_rsv":"0.1","week_end":"2023-02-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.37","percent_visits_covid":"1.58","percent_visits_influenza":"0.73","percent_visits_rsv":"0.09","week_end":"2023-02-25"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.15","percent_visits_covid":"1.44","percent_visits_influenza":"0.65","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.95","percent_visits_covid":"1.27","percent_visits_influenza":"0.61","percent_visits_rsv":"0.09","week_end":"2023-03-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.89","percent_visits_covid":"1.26","percent_visits_influenza":"0.57","percent_visits_rsv":"0.08","week_end":"2023-03-18"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.86","percent_visits_covid":"1.26","percent_visits_influenza":"0.55","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.78","percent_visits_covid":"1.2","percent_visits_influenza":"0.53","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.72","percent_visits_covid":"1.14","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.68","percent_visits_covid":"1.05","percent_visits_influenza":"0.57","percent_visits_rsv":"0.06","week_end":"2023-04-15"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.59","percent_visits_covid":"0.96","percent_visits_influenza":"0.57","percent_visits_rsv":"0.07","week_end":"2023-04-22"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.66","percent_visits_covid":"0.95","percent_visits_influenza":"0.67","percent_visits_rsv":"0.06","week_end":"2023-04-29"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.63","percent_visits_covid":"0.89","percent_visits_influenza":"0.7","percent_visits_rsv":"0.06","week_end":"2023-05-06"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.67","percent_visits_covid":"0.87","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-05-13"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.74","percent_visits_covid":"0.87","percent_visits_influenza":"0.82","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"1.89","percent_visits_covid":"0.93","percent_visits_influenza":"0.91","percent_visits_rsv":"0.06","week_end":"2023-05-27"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.25","percent_visits_covid":"1.08","percent_visits_influenza":"1.1","percent_visits_rsv":"0.08","week_end":"2023-06-03"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.12","percent_visits_covid":"1.07","percent_visits_influenza":"0.98","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.03","percent_visits_covid":"1.08","percent_visits_influenza":"0.89","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.08","percent_visits_covid":"1.18","percent_visits_influenza":"0.83","percent_visits_rsv":"0.09","week_end":"2023-06-24"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.19","percent_visits_covid":"1.34","percent_visits_influenza":"0.78","percent_visits_rsv":"0.09","week_end":"2023-07-01"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.34","percent_visits_covid":"1.54","percent_visits_influenza":"0.73","percent_visits_rsv":"0.1","week_end":"2023-07-08"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.48","percent_visits_covid":"1.75","percent_visits_influenza":"0.65","percent_visits_rsv":"0.1","week_end":"2023-07-15"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"2.79","percent_visits_covid":"2.09","percent_visits_influenza":"0.62","percent_visits_rsv":"0.1","week_end":"2023-07-22"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.22","percent_visits_covid":"2.55","percent_visits_influenza":"0.59","percent_visits_rsv":"0.12","week_end":"2023-07-29"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.71","percent_visits_covid":"3.02","percent_visits_influenza":"0.6","percent_visits_rsv":"0.14","week_end":"2023-08-05"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.99","percent_visits_covid":"3.34","percent_visits_influenza":"0.56","percent_visits_rsv":"0.14","week_end":"2023-08-12"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.4","percent_visits_covid":"4.48","percent_visits_influenza":"0.78","percent_visits_rsv":"0.21","week_end":"2023-08-26"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.23","percent_visits_covid":"4.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.25","week_end":"2023-09-02"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.43","percent_visits_covid":"3.33","percent_visits_influenza":"0.88","percent_visits_rsv":"0.28","week_end":"2023-09-09"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.44","percent_visits_covid":"2.3","percent_visits_influenza":"0.89","percent_visits_rsv":"0.28","week_end":"2023-09-16"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.26","percent_visits_covid":"1.79","percent_visits_influenza":"1.11","percent_visits_rsv":"0.41","week_end":"2023-09-23"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.25","percent_visits_covid":"1.45","percent_visits_influenza":"1.34","percent_visits_rsv":"0.5","week_end":"2023-09-30"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.45","percent_visits_covid":"1.22","percent_visits_influenza":"1.65","percent_visits_rsv":"0.63","week_end":"2023-10-07"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"3.77","percent_visits_covid":"1.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.71","week_end":"2023-10-14"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.17","percent_visits_covid":"1.0","percent_visits_influenza":"2.47","percent_visits_rsv":"0.77","week_end":"2023-10-21"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"4.54","percent_visits_covid":"0.94","percent_visits_influenza":"2.83","percent_visits_rsv":"0.84","week_end":"2023-10-28"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.0","percent_visits_covid":"0.82","percent_visits_influenza":"3.41","percent_visits_rsv":"0.83","week_end":"2023-11-04"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.46","percent_visits_covid":"0.82","percent_visits_influenza":"3.89","percent_visits_rsv":"0.81","week_end":"2023-11-11"}
-,{"county":"All","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.53","percent_visits_covid":"0.8","percent_visits_influenza":"4.08","percent_visits_rsv":"0.72","week_end":"2023-11-18"}
-,{"county":"All","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.74","percent_visits_covid":"0.92","percent_visits_influenza":"4.19","percent_visits_rsv":"0.69","week_end":"2023-11-25"}
-,{"county":"All","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"All","hsa_counties":"All","percent_visits_combined":"5.17","percent_visits_covid":"1.0","percent_visits_influenza":"3.68","percent_visits_rsv":"0.56","week_end":"2023-12-02"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.66","percent_visits_covid":"0.96","percent_visits_influenza":"0.41","percent_visits_rsv":"1.32","week_end":"2022-10-01"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.87","percent_visits_covid":"0.77","percent_visits_influenza":"0.44","percent_visits_rsv":"0.67","week_end":"2022-10-08"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.81","percent_visits_covid":"0.61","percent_visits_influenza":"0.6","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.68","percent_visits_covid":"0.62","percent_visits_influenza":"1.37","percent_visits_rsv":"0.7","week_end":"2022-10-22"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.11","percent_visits_covid":"0.9","percent_visits_influenza":"2.7","percent_visits_rsv":"0.56","week_end":"2022-10-29"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.91","percent_visits_covid":"0.96","percent_visits_influenza":"5.48","percent_visits_rsv":"0.49","week_end":"2022-11-05"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"7.7","percent_visits_covid":"0.91","percent_visits_influenza":"6.22","percent_visits_rsv":"0.57","week_end":"2022-11-12"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.46","percent_visits_covid":"0.85","percent_visits_influenza":"5.24","percent_visits_rsv":"0.45","week_end":"2022-11-19"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"7.93","percent_visits_covid":"1.24","percent_visits_influenza":"6.46","percent_visits_rsv":"0.38","week_end":"2022-11-26"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.22","percent_visits_covid":"1.46","percent_visits_influenza":"4.53","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.4","percent_visits_covid":"1.53","percent_visits_influenza":"3.72","percent_visits_rsv":"0.18","week_end":"2022-12-10"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.46","percent_visits_covid":"1.89","percent_visits_influenza":"3.42","percent_visits_rsv":"0.2","week_end":"2022-12-17"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.32","percent_visits_covid":"2.17","percent_visits_influenza":"3.03","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.14","percent_visits_covid":"3.32","percent_visits_influenza":"2.64","percent_visits_rsv":"0.25","week_end":"2022-12-31"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.38","percent_visits_covid":"3.24","percent_visits_influenza":"2.02","percent_visits_rsv":"0.15","week_end":"2023-01-07"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.88","percent_visits_covid":"2.82","percent_visits_influenza":"1.0","percent_visits_rsv":"0.09","week_end":"2023-01-14"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.0","percent_visits_covid":"2.92","percent_visits_influenza":"1.06","percent_visits_rsv":"0.09","week_end":"2023-01-21"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.0","percent_visits_covid":"2.9","percent_visits_influenza":"1.05","percent_visits_rsv":"0.09","week_end":"2023-01-28"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.71","percent_visits_covid":"2.51","percent_visits_influenza":"1.21","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.01","percent_visits_covid":"2.07","percent_visits_influenza":"0.9","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.07","percent_visits_covid":"1.36","percent_visits_influenza":"0.64","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.67","percent_visits_covid":"1.18","percent_visits_influenza":"0.42","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.48","percent_visits_covid":"1.08","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.12","percent_visits_covid":"0.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.06","week_end":"2023-03-11"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.29","percent_visits_covid":"0.97","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.22","percent_visits_covid":"0.95","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-03-25"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.04","percent_visits_covid":"0.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.0","percent_visits_covid":"0.72","percent_visits_influenza":"0.24","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.97","percent_visits_covid":"0.69","percent_visits_influenza":"0.28","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.78","percent_visits_covid":"0.55","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.89","percent_visits_covid":"0.64","percent_visits_influenza":"0.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.01","percent_visits_covid":"0.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.06","percent_visits_covid":"0.69","percent_visits_influenza":"0.34","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.99","percent_visits_covid":"0.59","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-05-20"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.26","percent_visits_covid":"0.62","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.49","percent_visits_covid":"0.92","percent_visits_influenza":"0.53","percent_visits_rsv":"0.07","week_end":"2023-06-03"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.57","percent_visits_covid":"0.97","percent_visits_influenza":"0.53","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.38","percent_visits_covid":"0.99","percent_visits_influenza":"0.34","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.54","percent_visits_covid":"1.08","percent_visits_influenza":"0.44","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.76","percent_visits_covid":"1.25","percent_visits_influenza":"0.47","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.86","percent_visits_covid":"1.35","percent_visits_influenza":"0.43","percent_visits_rsv":"0.09","week_end":"2023-07-08"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.97","percent_visits_covid":"1.52","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-07-15"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.06","percent_visits_covid":"1.52","percent_visits_influenza":"0.49","percent_visits_rsv":"0.06","week_end":"2023-07-22"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.55","percent_visits_covid":"2.03","percent_visits_influenza":"0.42","percent_visits_rsv":"0.12","week_end":"2023-07-29"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.79","percent_visits_covid":"2.24","percent_visits_influenza":"0.47","percent_visits_rsv":"0.09","week_end":"2023-08-05"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.11","percent_visits_covid":"2.59","percent_visits_influenza":"0.4","percent_visits_rsv":"0.14","week_end":"2023-08-12"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.67","percent_visits_covid":"3.16","percent_visits_influenza":"0.43","percent_visits_rsv":"0.1","week_end":"2023-08-19"}
-,{"county":"Baker","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.7","percent_visits_covid":"3.96","percent_visits_influenza":"0.58","percent_visits_rsv":"0.21","week_end":"2023-08-26"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.34","percent_visits_covid":"4.65","percent_visits_influenza":"0.55","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.23","percent_visits_covid":"3.58","percent_visits_influenza":"0.47","percent_visits_rsv":"0.21","week_end":"2023-09-09"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.31","percent_visits_covid":"2.55","percent_visits_influenza":"0.48","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.95","percent_visits_covid":"1.93","percent_visits_influenza":"0.76","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.84","percent_visits_covid":"1.39","percent_visits_influenza":"1.0","percent_visits_rsv":"0.49","week_end":"2023-09-30"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.51","percent_visits_covid":"1.3","percent_visits_influenza":"1.28","percent_visits_rsv":"0.99","week_end":"2023-10-07"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"1.34","percent_visits_rsv":"0.88","week_end":"2023-10-14"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.67","percent_visits_covid":"0.93","percent_visits_influenza":"1.75","percent_visits_rsv":"1.07","week_end":"2023-10-21"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.16","percent_visits_covid":"0.87","percent_visits_influenza":"2.08","percent_visits_rsv":"1.24","week_end":"2023-10-28"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.37","percent_visits_covid":"0.82","percent_visits_influenza":"2.35","percent_visits_rsv":"1.25","week_end":"2023-11-04"}
-,{"county":"Baker","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.5","percent_visits_covid":"0.87","percent_visits_influenza":"3.49","percent_visits_rsv":"1.2","week_end":"2023-11-11"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.21","percent_visits_covid":"0.65","percent_visits_influenza":"3.67","percent_visits_rsv":"0.96","week_end":"2023-11-18"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.57","percent_visits_covid":"0.74","percent_visits_influenza":"4.02","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Baker","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.41","percent_visits_covid":"0.77","percent_visits_influenza":"3.95","percent_visits_rsv":"0.74","week_end":"2023-12-02"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.22","percent_visits_covid":"0.96","percent_visits_influenza":"2.98","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.17","percent_visits_covid":"0.89","percent_visits_influenza":"4.1","percent_visits_rsv":"0.18","week_end":"2022-10-08"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.74","percent_visits_covid":"0.7","percent_visits_influenza":"3.73","percent_visits_rsv":"0.31","week_end":"2022-10-15"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.39","percent_visits_covid":"0.96","percent_visits_influenza":"5.24","percent_visits_rsv":"0.24","week_end":"2022-10-22"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.68","percent_visits_covid":"0.78","percent_visits_influenza":"5.56","percent_visits_rsv":"0.39","week_end":"2022-10-29"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.13","percent_visits_covid":"0.88","percent_visits_influenza":"6.85","percent_visits_rsv":"0.43","week_end":"2022-11-05"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.74","percent_visits_covid":"0.76","percent_visits_influenza":"6.65","percent_visits_rsv":"0.36","week_end":"2022-11-12"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.07","percent_visits_covid":"0.56","percent_visits_influenza":"5.1","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.62","percent_visits_covid":"0.72","percent_visits_influenza":"6.26","percent_visits_rsv":"0.77","week_end":"2022-11-26"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"7.79","percent_visits_covid":"2.54","percent_visits_influenza":"5.18","percent_visits_rsv":"0.13","week_end":"2022-12-24"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.54","percent_visits_covid":"0.74","percent_visits_influenza":"5.27","percent_visits_rsv":"0.55","week_end":"2022-12-03"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.5","percent_visits_covid":"1.36","percent_visits_influenza":"3.77","percent_visits_rsv":"0.42","week_end":"2022-12-10"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.25","percent_visits_covid":"1.63","percent_visits_influenza":"3.05","percent_visits_rsv":"0.59","week_end":"2022-12-17"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.25","percent_visits_covid":"2.17","percent_visits_influenza":"3.61","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.73","percent_visits_covid":"3.86","percent_visits_influenza":"3.52","percent_visits_rsv":"0.42","week_end":"2022-12-31"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.17","percent_visits_covid":"3.23","percent_visits_influenza":"2.73","percent_visits_rsv":"0.4","week_end":"2023-01-07"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.01","percent_visits_covid":"2.54","percent_visits_influenza":"2.04","percent_visits_rsv":"0.42","week_end":"2023-01-14"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.87","percent_visits_covid":"2.43","percent_visits_influenza":"2.14","percent_visits_rsv":"0.35","week_end":"2023-01-21"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.73","percent_visits_covid":"1.76","percent_visits_influenza":"1.7","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"2.51","percent_visits_influenza":"1.56","percent_visits_rsv":"0.13","week_end":"2023-02-04"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.14","percent_visits_covid":"2.23","percent_visits_influenza":"1.64","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.69","percent_visits_covid":"1.66","percent_visits_influenza":"0.92","percent_visits_rsv":"0.18","week_end":"2023-02-18"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.76","percent_visits_covid":"1.69","percent_visits_influenza":"0.91","percent_visits_rsv":"0.2","week_end":"2023-02-25"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.28","percent_visits_influenza":"0.77","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.73","percent_visits_covid":"0.93","percent_visits_influenza":"0.6","percent_visits_rsv":"0.23","week_end":"2023-03-11"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.54","percent_visits_covid":"0.92","percent_visits_influenza":"0.59","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.99","percent_visits_covid":"1.4","percent_visits_influenza":"0.52","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.6","percent_visits_covid":"1.11","percent_visits_influenza":"0.42","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.37","percent_visits_covid":"0.92","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.43","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.06","percent_visits_covid":"0.82","percent_visits_influenza":"0.19","percent_visits_rsv":"0.07","week_end":"2023-04-22"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.98","percent_visits_covid":"0.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.93","percent_visits_covid":"0.49","percent_visits_influenza":"0.34","percent_visits_rsv":"0.15","week_end":"2023-05-06"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.78","percent_visits_covid":"0.44","percent_visits_influenza":"0.29","percent_visits_rsv":"0.07","week_end":"2023-05-13"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.52","percent_visits_covid":"0.35","percent_visits_influenza":"0.17","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.08","percent_visits_covid":"0.59","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.09","percent_visits_covid":"0.43","percent_visits_influenza":"0.63","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.07","percent_visits_covid":"0.5","percent_visits_influenza":"0.47","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.86","percent_visits_covid":"0.39","percent_visits_influenza":"0.47","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.35","percent_visits_influenza":"0.3","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.96","percent_visits_covid":"0.75","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-07-01"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.41","percent_visits_influenza":"0.12","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.12","percent_visits_covid":"0.9","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.65","percent_visits_covid":"1.12","percent_visits_influenza":"0.44","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.55","percent_visits_covid":"1.25","percent_visits_influenza":"0.22","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.37","percent_visits_covid":"1.83","percent_visits_influenza":"0.39","percent_visits_rsv":"0.24","week_end":"2023-08-05"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.12","percent_visits_covid":"2.42","percent_visits_influenza":"0.45","percent_visits_rsv":"0.28","week_end":"2023-08-12"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"3.5","percent_visits_influenza":"0.39","percent_visits_rsv":"0.35","week_end":"2023-08-19"}
-,{"county":"Bay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.48","percent_visits_covid":"4.88","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-08-26"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.52","percent_visits_covid":"4.84","percent_visits_influenza":"0.26","percent_visits_rsv":"0.42","week_end":"2023-09-02"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.46","percent_visits_covid":"3.78","percent_visits_influenza":"0.45","percent_visits_rsv":"0.25","week_end":"2023-09-09"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.31","percent_visits_covid":"2.37","percent_visits_influenza":"0.73","percent_visits_rsv":"0.25","week_end":"2023-09-16"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.57","percent_visits_covid":"1.87","percent_visits_influenza":"1.2","percent_visits_rsv":"0.51","week_end":"2023-09-23"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.95","percent_visits_covid":"2.04","percent_visits_influenza":"2.25","percent_visits_rsv":"0.68","week_end":"2023-09-30"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.33","percent_visits_covid":"1.37","percent_visits_influenza":"4.44","percent_visits_rsv":"0.69","week_end":"2023-10-07"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.91","percent_visits_covid":"1.65","percent_visits_influenza":"5.67","percent_visits_rsv":"0.69","week_end":"2023-10-14"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.18","percent_visits_covid":"1.17","percent_visits_influenza":"6.4","percent_visits_rsv":"0.79","week_end":"2023-10-21"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.58","percent_visits_covid":"0.8","percent_visits_influenza":"7.2","percent_visits_rsv":"0.69","week_end":"2023-10-28"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.51","percent_visits_covid":"0.97","percent_visits_influenza":"7.98","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"Bay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"12.22","percent_visits_covid":"0.91","percent_visits_influenza":"10.69","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"10.13","percent_visits_covid":"0.53","percent_visits_influenza":"8.83","percent_visits_rsv":"0.84","week_end":"2023-11-18"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.81","percent_visits_covid":"0.77","percent_visits_influenza":"8.41","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Bay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.5","percent_visits_covid":"0.75","percent_visits_influenza":"6.27","percent_visits_rsv":"0.56","week_end":"2023-12-02"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"8.19","percent_visits_covid":"3.15","percent_visits_influenza":"5.04","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Bradford","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Bradford","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Bradford","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.74","percent_visits_covid":"1.22","percent_visits_influenza":"0.24","percent_visits_rsv":"0.3","week_end":"2022-10-01"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.09","percent_visits_covid":"0.68","percent_visits_influenza":"0.21","percent_visits_rsv":"0.22","week_end":"2022-10-08"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.14","percent_visits_covid":"0.63","percent_visits_influenza":"0.2","percent_visits_rsv":"0.34","week_end":"2022-10-15"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.22","percent_visits_covid":"0.62","percent_visits_influenza":"0.38","percent_visits_rsv":"0.23","week_end":"2022-10-22"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.78","percent_visits_covid":"0.86","percent_visits_influenza":"0.62","percent_visits_rsv":"0.32","week_end":"2022-10-29"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.55","percent_visits_covid":"0.41","percent_visits_influenza":"0.84","percent_visits_rsv":"0.32","week_end":"2022-11-05"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.2","percent_visits_covid":"0.73","percent_visits_influenza":"1.31","percent_visits_rsv":"0.17","week_end":"2022-11-12"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.9","percent_visits_covid":"0.5","percent_visits_influenza":"1.13","percent_visits_rsv":"0.27","week_end":"2022-11-19"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.21","percent_visits_covid":"0.67","percent_visits_influenza":"1.35","percent_visits_rsv":"0.21","week_end":"2022-11-26"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.48","percent_visits_covid":"0.88","percent_visits_influenza":"1.46","percent_visits_rsv":"0.17","week_end":"2022-12-03"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.83","percent_visits_covid":"0.97","percent_visits_influenza":"1.7","percent_visits_rsv":"0.16","week_end":"2022-12-10"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"3.61","percent_visits_covid":"1.08","percent_visits_influenza":"2.48","percent_visits_rsv":"0.08","week_end":"2022-12-17"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"3.85","percent_visits_covid":"1.09","percent_visits_influenza":"2.66","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"3.97","percent_visits_covid":"1.38","percent_visits_influenza":"2.41","percent_visits_rsv":"0.25","week_end":"2022-12-31"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"3.49","percent_visits_covid":"1.82","percent_visits_influenza":"1.56","percent_visits_rsv":"0.16","week_end":"2023-01-07"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.31","percent_visits_covid":"1.28","percent_visits_influenza":"0.94","percent_visits_rsv":"0.11","week_end":"2023-01-14"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.07","percent_visits_covid":"1.32","percent_visits_influenza":"0.7","percent_visits_rsv":"0.07","week_end":"2023-01-21"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.14","percent_visits_covid":"1.56","percent_visits_influenza":"0.55","percent_visits_rsv":"0.04","week_end":"2023-01-28"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.66","percent_visits_covid":"1.1","percent_visits_influenza":"0.57","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.0","percent_visits_covid":"0.73","percent_visits_influenza":"0.23","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.09","percent_visits_covid":"0.76","percent_visits_influenza":"0.27","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.17","percent_visits_covid":"0.89","percent_visits_influenza":"0.28","percent_visits_rsv":"0.01","week_end":"2023-02-25"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.81","percent_visits_covid":"0.53","percent_visits_influenza":"0.23","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.77","percent_visits_covid":"0.59","percent_visits_influenza":"0.18","percent_visits_rsv":"0.03","week_end":"2023-03-11"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.97","percent_visits_covid":"0.74","percent_visits_influenza":"0.22","percent_visits_rsv":"0.01","week_end":"2023-03-18"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.84","percent_visits_covid":"0.61","percent_visits_influenza":"0.2","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.75","percent_visits_covid":"0.46","percent_visits_influenza":"0.29","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.89","percent_visits_covid":"0.65","percent_visits_influenza":"0.24","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.73","percent_visits_covid":"0.43","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.75","percent_visits_covid":"0.47","percent_visits_influenza":"0.26","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.8","percent_visits_covid":"0.48","percent_visits_influenza":"0.32","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.74","percent_visits_covid":"0.47","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.7","percent_visits_covid":"0.44","percent_visits_influenza":"0.23","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.74","percent_visits_covid":"0.47","percent_visits_influenza":"0.26","percent_visits_rsv":"0.01","week_end":"2023-05-20"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.78","percent_visits_covid":"0.45","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.76","percent_visits_covid":"0.34","percent_visits_influenza":"0.37","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.82","percent_visits_covid":"0.51","percent_visits_influenza":"0.28","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.87","percent_visits_covid":"0.54","percent_visits_influenza":"0.32","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.25","percent_visits_covid":"0.68","percent_visits_influenza":"0.48","percent_visits_rsv":"0.09","week_end":"2023-06-24"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.25","percent_visits_covid":"0.83","percent_visits_influenza":"0.38","percent_visits_rsv":"0.07","week_end":"2023-07-01"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.39","percent_visits_covid":"1.03","percent_visits_influenza":"0.29","percent_visits_rsv":"0.1","week_end":"2023-07-08"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.47","percent_visits_covid":"1.06","percent_visits_influenza":"0.34","percent_visits_rsv":"0.07","week_end":"2023-07-15"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.34","percent_visits_covid":"0.94","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.16","percent_visits_covid":"1.04","percent_visits_influenza":"0.11","percent_visits_rsv":"0.01","week_end":"2023-07-29"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.23","percent_visits_covid":"0.98","percent_visits_influenza":"0.17","percent_visits_rsv":"0.1","week_end":"2023-08-05"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.53","percent_visits_covid":"1.15","percent_visits_influenza":"0.28","percent_visits_rsv":"0.15","week_end":"2023-08-12"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.65","percent_visits_covid":"1.46","percent_visits_influenza":"0.15","percent_visits_rsv":"0.04","week_end":"2023-08-19"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.93","percent_visits_covid":"1.64","percent_visits_influenza":"0.24","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.28","percent_visits_covid":"1.93","percent_visits_influenza":"0.17","percent_visits_rsv":"0.23","week_end":"2023-09-02"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.7","percent_visits_covid":"2.13","percent_visits_influenza":"0.39","percent_visits_rsv":"0.23","week_end":"2023-09-09"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.13","percent_visits_covid":"1.52","percent_visits_influenza":"0.52","percent_visits_rsv":"0.15","week_end":"2023-09-16"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.07","percent_visits_covid":"1.32","percent_visits_influenza":"0.49","percent_visits_rsv":"0.26","week_end":"2023-09-23"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.77","percent_visits_covid":"1.08","percent_visits_influenza":"0.51","percent_visits_rsv":"0.18","week_end":"2023-09-30"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.93","percent_visits_covid":"0.97","percent_visits_influenza":"0.57","percent_visits_rsv":"0.42","week_end":"2023-10-07"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.75","percent_visits_covid":"0.48","percent_visits_influenza":"0.81","percent_visits_rsv":"0.48","week_end":"2023-10-14"}
-,{"county":"Brevard","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.49","percent_visits_covid":"0.61","percent_visits_influenza":"1.5","percent_visits_rsv":"0.39","week_end":"2023-10-21"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.79","percent_visits_covid":"0.54","percent_visits_influenza":"1.79","percent_visits_rsv":"0.48","week_end":"2023-10-28"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.68","percent_visits_covid":"0.65","percent_visits_influenza":"1.68","percent_visits_rsv":"0.37","week_end":"2023-11-04"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.68","percent_visits_covid":"0.52","percent_visits_influenza":"1.68","percent_visits_rsv":"0.48","week_end":"2023-11-11"}
-,{"county":"Brevard","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.17","percent_visits_covid":"0.44","percent_visits_influenza":"1.45","percent_visits_rsv":"0.29","week_end":"2023-11-18"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.97","percent_visits_covid":"0.75","percent_visits_influenza":"1.76","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Brevard","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.54","percent_visits_covid":"0.72","percent_visits_influenza":"1.48","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.45","percent_visits_influenza":"0.71","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.98","percent_visits_covid":"1.1","percent_visits_influenza":"0.65","percent_visits_rsv":"0.24","week_end":"2022-10-08"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.14","percent_visits_covid":"1.15","percent_visits_influenza":"0.72","percent_visits_rsv":"0.27","week_end":"2022-10-15"}
-,{"county":"Broward","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.28","percent_visits_covid":"1.07","percent_visits_influenza":"0.93","percent_visits_rsv":"0.3","week_end":"2022-10-22"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.51","percent_visits_covid":"0.98","percent_visits_influenza":"1.18","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.92","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"0.33","week_end":"2022-11-05"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.28","percent_visits_covid":"1.15","percent_visits_influenza":"1.75","percent_visits_rsv":"0.41","week_end":"2022-11-12"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.33","percent_visits_covid":"1.27","percent_visits_influenza":"1.74","percent_visits_rsv":"0.35","week_end":"2022-11-19"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.31","percent_visits_covid":"1.66","percent_visits_influenza":"2.35","percent_visits_rsv":"0.35","week_end":"2022-11-26"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.74","percent_visits_covid":"2.16","percent_visits_influenza":"2.35","percent_visits_rsv":"0.28","week_end":"2022-12-03"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"5.46","percent_visits_covid":"2.41","percent_visits_influenza":"2.89","percent_visits_rsv":"0.21","week_end":"2022-12-10"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"6.38","percent_visits_covid":"2.82","percent_visits_influenza":"3.4","percent_visits_rsv":"0.24","week_end":"2022-12-17"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"7.03","percent_visits_covid":"3.12","percent_visits_influenza":"3.81","percent_visits_rsv":"0.22","week_end":"2022-12-24"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"7.24","percent_visits_covid":"3.73","percent_visits_influenza":"3.43","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"6.38","percent_visits_covid":"3.6","percent_visits_influenza":"2.69","percent_visits_rsv":"0.19","week_end":"2023-01-07"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.82","percent_visits_covid":"2.87","percent_visits_influenza":"1.91","percent_visits_rsv":"0.09","week_end":"2023-01-14"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.42","percent_visits_covid":"2.47","percent_visits_influenza":"1.91","percent_visits_rsv":"0.09","week_end":"2023-01-21"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.12","percent_visits_covid":"2.27","percent_visits_influenza":"1.83","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.5","percent_visits_covid":"1.94","percent_visits_influenza":"1.51","percent_visits_rsv":"0.07","week_end":"2023-02-04"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.91","percent_visits_covid":"1.64","percent_visits_influenza":"1.21","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.64","percent_visits_covid":"1.46","percent_visits_influenza":"1.13","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.37","percent_visits_influenza":"1.07","percent_visits_rsv":"0.05","week_end":"2023-02-25"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.26","percent_visits_covid":"1.3","percent_visits_influenza":"0.92","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.31","percent_visits_covid":"1.25","percent_visits_influenza":"1.03","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.22","percent_visits_covid":"1.2","percent_visits_influenza":"0.99","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.05","percent_visits_covid":"1.18","percent_visits_influenza":"0.84","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.06","percent_visits_covid":"1.16","percent_visits_influenza":"0.84","percent_visits_rsv":"0.07","week_end":"2023-04-01"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.89","percent_visits_covid":"1.02","percent_visits_influenza":"0.84","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Broward","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.94","percent_visits_covid":"1.0","percent_visits_influenza":"0.89","percent_visits_rsv":"0.06","week_end":"2023-04-15"}
-,{"county":"Broward","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.15","percent_visits_covid":"0.98","percent_visits_influenza":"1.12","percent_visits_rsv":"0.06","week_end":"2023-04-22"}
-,{"county":"Broward","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.36","percent_visits_covid":"1.14","percent_visits_influenza":"1.17","percent_visits_rsv":"0.07","week_end":"2023-04-29"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.21","percent_visits_covid":"0.99","percent_visits_influenza":"1.19","percent_visits_rsv":"0.05","week_end":"2023-05-06"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.06","percent_visits_influenza":"1.37","percent_visits_rsv":"0.05","week_end":"2023-05-13"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.74","percent_visits_covid":"1.12","percent_visits_influenza":"1.58","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.77","percent_visits_covid":"1.17","percent_visits_influenza":"1.56","percent_visits_rsv":"0.07","week_end":"2023-05-27"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.41","percent_visits_covid":"1.36","percent_visits_influenza":"1.96","percent_visits_rsv":"0.12","week_end":"2023-06-03"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.17","percent_visits_covid":"1.29","percent_visits_influenza":"1.79","percent_visits_rsv":"0.09","week_end":"2023-06-10"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.16","percent_visits_covid":"1.35","percent_visits_influenza":"1.7","percent_visits_rsv":"0.13","week_end":"2023-06-17"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.2","percent_visits_covid":"1.53","percent_visits_influenza":"1.59","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.23","percent_visits_covid":"1.66","percent_visits_influenza":"1.46","percent_visits_rsv":"0.14","week_end":"2023-07-01"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.35","percent_visits_covid":"1.99","percent_visits_influenza":"1.25","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.38","percent_visits_covid":"2.12","percent_visits_influenza":"1.17","percent_visits_rsv":"0.12","week_end":"2023-07-15"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.37","percent_visits_covid":"2.3","percent_visits_influenza":"0.96","percent_visits_rsv":"0.13","week_end":"2023-07-22"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.67","percent_visits_covid":"2.62","percent_visits_influenza":"0.94","percent_visits_rsv":"0.16","week_end":"2023-07-29"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.02","percent_visits_covid":"2.95","percent_visits_influenza":"0.96","percent_visits_rsv":"0.16","week_end":"2023-08-05"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.86","percent_visits_covid":"2.94","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-12"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.07","percent_visits_covid":"3.1","percent_visits_influenza":"0.82","percent_visits_rsv":"0.18","week_end":"2023-08-19"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.64","percent_visits_covid":"3.47","percent_visits_influenza":"1.02","percent_visits_rsv":"0.2","week_end":"2023-08-26"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.84","percent_visits_covid":"3.51","percent_visits_influenza":"1.14","percent_visits_rsv":"0.24","week_end":"2023-09-02"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.37","percent_visits_covid":"2.79","percent_visits_influenza":"1.36","percent_visits_rsv":"0.26","week_end":"2023-09-09"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.11","percent_visits_covid":"1.81","percent_visits_influenza":"1.14","percent_visits_rsv":"0.19","week_end":"2023-09-16"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.98","percent_visits_covid":"1.41","percent_visits_influenza":"1.29","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.97","percent_visits_covid":"1.1","percent_visits_influenza":"1.55","percent_visits_rsv":"0.37","week_end":"2023-09-30"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.06","percent_visits_covid":"0.99","percent_visits_influenza":"1.7","percent_visits_rsv":"0.39","week_end":"2023-10-07"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.32","percent_visits_covid":"0.79","percent_visits_influenza":"2.11","percent_visits_rsv":"0.44","week_end":"2023-10-14"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.89","percent_visits_covid":"0.69","percent_visits_influenza":"2.74","percent_visits_rsv":"0.49","week_end":"2023-10-21"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.27","percent_visits_covid":"0.69","percent_visits_influenza":"3.15","percent_visits_rsv":"0.47","week_end":"2023-10-28"}
-,{"county":"Broward","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.58","percent_visits_covid":"0.64","percent_visits_influenza":"3.48","percent_visits_rsv":"0.48","week_end":"2023-11-04"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.69","percent_visits_covid":"0.64","percent_visits_influenza":"3.66","percent_visits_rsv":"0.42","week_end":"2023-11-11"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.56","percent_visits_covid":"0.65","percent_visits_influenza":"3.61","percent_visits_rsv":"0.33","week_end":"2023-11-18"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.87","percent_visits_covid":"0.76","percent_visits_influenza":"3.78","percent_visits_rsv":"0.36","week_end":"2023-11-25"}
-,{"county":"Broward","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.51","percent_visits_covid":"0.99","percent_visits_influenza":"3.25","percent_visits_rsv":"0.32","week_end":"2023-12-02"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.22","percent_visits_covid":"0.96","percent_visits_influenza":"2.98","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.17","percent_visits_covid":"0.89","percent_visits_influenza":"4.1","percent_visits_rsv":"0.18","week_end":"2022-10-08"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.74","percent_visits_covid":"0.7","percent_visits_influenza":"3.73","percent_visits_rsv":"0.31","week_end":"2022-10-15"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.39","percent_visits_covid":"0.96","percent_visits_influenza":"5.24","percent_visits_rsv":"0.24","week_end":"2022-10-22"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.68","percent_visits_covid":"0.78","percent_visits_influenza":"5.56","percent_visits_rsv":"0.39","week_end":"2022-10-29"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.13","percent_visits_covid":"0.88","percent_visits_influenza":"6.85","percent_visits_rsv":"0.43","week_end":"2022-11-05"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.74","percent_visits_covid":"0.76","percent_visits_influenza":"6.65","percent_visits_rsv":"0.36","week_end":"2022-11-12"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.07","percent_visits_covid":"0.56","percent_visits_influenza":"5.1","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.62","percent_visits_covid":"0.72","percent_visits_influenza":"6.26","percent_visits_rsv":"0.77","week_end":"2022-11-26"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.54","percent_visits_covid":"0.74","percent_visits_influenza":"5.27","percent_visits_rsv":"0.55","week_end":"2022-12-03"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.5","percent_visits_covid":"1.36","percent_visits_influenza":"3.77","percent_visits_rsv":"0.42","week_end":"2022-12-10"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.25","percent_visits_covid":"1.63","percent_visits_influenza":"3.05","percent_visits_rsv":"0.59","week_end":"2022-12-17"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.25","percent_visits_covid":"2.17","percent_visits_influenza":"3.61","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.73","percent_visits_covid":"3.86","percent_visits_influenza":"3.52","percent_visits_rsv":"0.42","week_end":"2022-12-31"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.17","percent_visits_covid":"3.23","percent_visits_influenza":"2.73","percent_visits_rsv":"0.4","week_end":"2023-01-07"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.01","percent_visits_covid":"2.54","percent_visits_influenza":"2.04","percent_visits_rsv":"0.42","week_end":"2023-01-14"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.87","percent_visits_covid":"2.43","percent_visits_influenza":"2.14","percent_visits_rsv":"0.35","week_end":"2023-01-21"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.73","percent_visits_covid":"1.76","percent_visits_influenza":"1.7","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"2.51","percent_visits_influenza":"1.56","percent_visits_rsv":"0.13","week_end":"2023-02-04"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.14","percent_visits_covid":"2.23","percent_visits_influenza":"1.64","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.69","percent_visits_covid":"1.66","percent_visits_influenza":"0.92","percent_visits_rsv":"0.18","week_end":"2023-02-18"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.76","percent_visits_covid":"1.69","percent_visits_influenza":"0.91","percent_visits_rsv":"0.2","week_end":"2023-02-25"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.28","percent_visits_influenza":"0.77","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.73","percent_visits_covid":"0.93","percent_visits_influenza":"0.6","percent_visits_rsv":"0.23","week_end":"2023-03-11"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.54","percent_visits_covid":"0.92","percent_visits_influenza":"0.59","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.99","percent_visits_covid":"1.4","percent_visits_influenza":"0.52","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.6","percent_visits_covid":"1.11","percent_visits_influenza":"0.42","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.37","percent_visits_covid":"0.92","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.43","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.06","percent_visits_covid":"0.82","percent_visits_influenza":"0.19","percent_visits_rsv":"0.07","week_end":"2023-04-22"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.98","percent_visits_covid":"0.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.93","percent_visits_covid":"0.49","percent_visits_influenza":"0.34","percent_visits_rsv":"0.15","week_end":"2023-05-06"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.78","percent_visits_covid":"0.44","percent_visits_influenza":"0.29","percent_visits_rsv":"0.07","week_end":"2023-05-13"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.52","percent_visits_covid":"0.35","percent_visits_influenza":"0.17","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.08","percent_visits_covid":"0.59","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.09","percent_visits_covid":"0.43","percent_visits_influenza":"0.63","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.07","percent_visits_covid":"0.5","percent_visits_influenza":"0.47","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.86","percent_visits_covid":"0.39","percent_visits_influenza":"0.47","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.35","percent_visits_influenza":"0.3","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.96","percent_visits_covid":"0.75","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-07-01"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.41","percent_visits_influenza":"0.12","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.12","percent_visits_covid":"0.9","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.65","percent_visits_covid":"1.12","percent_visits_influenza":"0.44","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.55","percent_visits_covid":"1.25","percent_visits_influenza":"0.22","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.37","percent_visits_covid":"1.83","percent_visits_influenza":"0.39","percent_visits_rsv":"0.24","week_end":"2023-08-05"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.12","percent_visits_covid":"2.42","percent_visits_influenza":"0.45","percent_visits_rsv":"0.28","week_end":"2023-08-12"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"3.5","percent_visits_influenza":"0.39","percent_visits_rsv":"0.35","week_end":"2023-08-19"}
-,{"county":"Calhoun","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.48","percent_visits_covid":"4.88","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-08-26"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.52","percent_visits_covid":"4.84","percent_visits_influenza":"0.26","percent_visits_rsv":"0.42","week_end":"2023-09-02"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.46","percent_visits_covid":"3.78","percent_visits_influenza":"0.45","percent_visits_rsv":"0.25","week_end":"2023-09-09"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.31","percent_visits_covid":"2.37","percent_visits_influenza":"0.73","percent_visits_rsv":"0.25","week_end":"2023-09-16"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.57","percent_visits_covid":"1.87","percent_visits_influenza":"1.2","percent_visits_rsv":"0.51","week_end":"2023-09-23"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.95","percent_visits_covid":"2.04","percent_visits_influenza":"2.25","percent_visits_rsv":"0.68","week_end":"2023-09-30"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.33","percent_visits_covid":"1.37","percent_visits_influenza":"4.44","percent_visits_rsv":"0.69","week_end":"2023-10-07"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.91","percent_visits_covid":"1.65","percent_visits_influenza":"5.67","percent_visits_rsv":"0.69","week_end":"2023-10-14"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.18","percent_visits_covid":"1.17","percent_visits_influenza":"6.4","percent_visits_rsv":"0.79","week_end":"2023-10-21"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.58","percent_visits_covid":"0.8","percent_visits_influenza":"7.2","percent_visits_rsv":"0.69","week_end":"2023-10-28"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.51","percent_visits_covid":"0.97","percent_visits_influenza":"7.98","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"Calhoun","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"12.22","percent_visits_covid":"0.91","percent_visits_influenza":"10.69","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"10.13","percent_visits_covid":"0.53","percent_visits_influenza":"8.83","percent_visits_rsv":"0.84","week_end":"2023-11-18"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.81","percent_visits_covid":"0.77","percent_visits_influenza":"8.41","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Calhoun","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.5","percent_visits_covid":"0.75","percent_visits_influenza":"6.27","percent_visits_rsv":"0.56","week_end":"2023-12-02"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.44","percent_visits_covid":"1.77","percent_visits_influenza":"0.35","percent_visits_rsv":"0.38","week_end":"2022-10-01"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.19","percent_visits_covid":"1.55","percent_visits_influenza":"0.31","percent_visits_rsv":"0.35","week_end":"2022-10-08"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.62","percent_visits_covid":"2.09","percent_visits_influenza":"0.36","percent_visits_rsv":"0.2","week_end":"2022-10-15"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.62","percent_visits_covid":"2.15","percent_visits_influenza":"0.26","percent_visits_rsv":"0.25","week_end":"2022-10-22"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.07","percent_visits_covid":"2.46","percent_visits_influenza":"0.41","percent_visits_rsv":"0.2","week_end":"2022-10-29"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.85","percent_visits_covid":"2.74","percent_visits_influenza":"0.94","percent_visits_rsv":"0.18","week_end":"2022-11-05"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.04","percent_visits_covid":"2.23","percent_visits_influenza":"1.61","percent_visits_rsv":"0.21","week_end":"2022-11-12"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.16","percent_visits_covid":"2.43","percent_visits_influenza":"1.71","percent_visits_rsv":"0.12","week_end":"2022-11-19"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.25","percent_visits_covid":"2.31","percent_visits_influenza":"2.88","percent_visits_rsv":"0.12","week_end":"2022-11-26"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.16","percent_visits_covid":"2.5","percent_visits_influenza":"2.56","percent_visits_rsv":"0.17","week_end":"2022-12-03"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.86","percent_visits_covid":"2.39","percent_visits_influenza":"2.34","percent_visits_rsv":"0.15","week_end":"2022-12-10"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.62","percent_visits_covid":"2.8","percent_visits_influenza":"2.7","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"6.11","percent_visits_covid":"2.87","percent_visits_influenza":"3.16","percent_visits_rsv":"0.14","week_end":"2022-12-24"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"6.84","percent_visits_covid":"3.68","percent_visits_influenza":"3.18","percent_visits_rsv":"0.08","week_end":"2022-12-31"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.74","percent_visits_covid":"3.46","percent_visits_influenza":"2.23","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.53","percent_visits_covid":"2.78","percent_visits_influenza":"1.65","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.17","percent_visits_covid":"2.78","percent_visits_influenza":"1.29","percent_visits_rsv":"0.1","week_end":"2023-01-21"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.06","percent_visits_covid":"2.16","percent_visits_influenza":"0.86","percent_visits_rsv":"0.1","week_end":"2023-01-28"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.81","percent_visits_covid":"2.68","percent_visits_influenza":"1.13","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.39","percent_visits_covid":"2.36","percent_visits_influenza":"0.96","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.28","percent_visits_covid":"2.2","percent_visits_influenza":"1.02","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.08","percent_visits_covid":"2.04","percent_visits_influenza":"1.0","percent_visits_rsv":"0.05","week_end":"2023-02-25"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.42","percent_visits_covid":"2.49","percent_visits_influenza":"0.89","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.0","percent_visits_covid":"2.42","percent_visits_influenza":"0.54","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.77","percent_visits_covid":"2.2","percent_visits_influenza":"0.55","percent_visits_rsv":"0.03","week_end":"2023-03-18"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.35","percent_visits_covid":"1.93","percent_visits_influenza":"0.36","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.16","percent_visits_covid":"1.68","percent_visits_influenza":"0.49","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.97","percent_visits_covid":"1.56","percent_visits_influenza":"0.39","percent_visits_rsv":"0.03","week_end":"2023-04-08"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.79","percent_visits_covid":"1.41","percent_visits_influenza":"0.36","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.8","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.25","percent_visits_covid":"0.95","percent_visits_influenza":"0.28","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.56","percent_visits_covid":"1.16","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.07","percent_visits_covid":"0.75","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.0","percent_visits_covid":"0.66","percent_visits_influenza":"0.32","percent_visits_rsv":"0.02","week_end":"2023-05-20"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.13","percent_visits_covid":"0.78","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"6.23","percent_visits_covid":"2.9","percent_visits_influenza":"3.15","percent_visits_rsv":"0.31","week_end":"2023-01-07"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.36","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"0.92","percent_visits_covid":"0.66","percent_visits_influenza":"0.25","percent_visits_rsv":"0.02","week_end":"2023-06-10"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.2","percent_visits_covid":"0.66","percent_visits_influenza":"0.56","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.48","percent_visits_covid":"1.13","percent_visits_influenza":"0.32","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.49","percent_visits_covid":"1.14","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.61","percent_visits_covid":"1.23","percent_visits_influenza":"0.4","percent_visits_rsv":"0.02","week_end":"2023-07-08"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.46","percent_visits_covid":"1.13","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.87","percent_visits_covid":"1.49","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.45","percent_visits_covid":"2.02","percent_visits_influenza":"0.38","percent_visits_rsv":"0.05","week_end":"2023-07-29"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.68","percent_visits_covid":"2.34","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.58","percent_visits_covid":"3.2","percent_visits_influenza":"0.38","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Charlotte","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.4","percent_visits_covid":"3.84","percent_visits_influenza":"0.58","percent_visits_rsv":"0.05","week_end":"2023-08-19"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.8","percent_visits_covid":"4.23","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-08-26"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.19","percent_visits_covid":"4.57","percent_visits_influenza":"0.5","percent_visits_rsv":"0.2","week_end":"2023-09-02"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.88","percent_visits_covid":"3.37","percent_visits_influenza":"0.45","percent_visits_rsv":"0.11","week_end":"2023-09-09"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.13","percent_visits_covid":"2.66","percent_visits_influenza":"0.42","percent_visits_rsv":"0.08","week_end":"2023-09-16"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.07","percent_visits_covid":"2.38","percent_visits_influenza":"0.56","percent_visits_rsv":"0.15","week_end":"2023-09-23"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.6","percent_visits_covid":"1.75","percent_visits_influenza":"0.62","percent_visits_rsv":"0.25","week_end":"2023-09-30"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.27","percent_visits_covid":"1.71","percent_visits_influenza":"1.28","percent_visits_rsv":"0.3","week_end":"2023-10-07"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.23","percent_visits_covid":"1.59","percent_visits_influenza":"1.28","percent_visits_rsv":"0.41","week_end":"2023-10-14"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.44","percent_visits_covid":"1.46","percent_visits_influenza":"1.38","percent_visits_rsv":"0.64","week_end":"2023-10-21"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.24","percent_visits_covid":"1.24","percent_visits_influenza":"2.2","percent_visits_rsv":"0.82","week_end":"2023-10-28"}
-,{"county":"Charlotte","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.97","percent_visits_covid":"1.18","percent_visits_influenza":"2.17","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.09","percent_visits_covid":"1.18","percent_visits_influenza":"2.36","percent_visits_rsv":"0.55","week_end":"2023-11-11"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.39","percent_visits_covid":"1.06","percent_visits_influenza":"2.82","percent_visits_rsv":"0.55","week_end":"2023-11-18"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.92","percent_visits_covid":"1.34","percent_visits_influenza":"3.15","percent_visits_rsv":"0.49","week_end":"2023-11-25"}
-,{"county":"Charlotte","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.4","percent_visits_covid":"1.3","percent_visits_influenza":"2.66","percent_visits_rsv":"0.5","week_end":"2023-12-02"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.92","percent_visits_covid":"1.32","percent_visits_influenza":"1.34","percent_visits_rsv":"0.27","week_end":"2022-10-01"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.81","percent_visits_covid":"0.86","percent_visits_influenza":"0.83","percent_visits_rsv":"0.13","week_end":"2022-10-08"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.93","percent_visits_covid":"0.83","percent_visits_influenza":"0.95","percent_visits_rsv":"0.16","week_end":"2022-10-15"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.36","percent_visits_covid":"0.97","percent_visits_influenza":"1.29","percent_visits_rsv":"0.12","week_end":"2022-10-22"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.95","percent_visits_covid":"0.77","percent_visits_influenza":"1.92","percent_visits_rsv":"0.29","week_end":"2022-10-29"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.43","percent_visits_covid":"0.83","percent_visits_influenza":"2.36","percent_visits_rsv":"0.28","week_end":"2022-11-05"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.82","percent_visits_covid":"0.81","percent_visits_influenza":"2.72","percent_visits_rsv":"0.3","week_end":"2022-11-12"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.81","percent_visits_covid":"0.99","percent_visits_influenza":"2.6","percent_visits_rsv":"0.26","week_end":"2022-11-19"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.02","percent_visits_covid":"1.12","percent_visits_influenza":"2.61","percent_visits_rsv":"0.29","week_end":"2022-11-26"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.16","percent_visits_covid":"1.35","percent_visits_influenza":"2.7","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.6","percent_visits_covid":"1.4","percent_visits_influenza":"2.1","percent_visits_rsv":"0.12","week_end":"2022-12-10"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.83","percent_visits_covid":"1.54","percent_visits_influenza":"2.27","percent_visits_rsv":"0.07","week_end":"2022-12-17"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.35","percent_visits_covid":"1.7","percent_visits_influenza":"2.54","percent_visits_rsv":"0.14","week_end":"2022-12-24"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.64","percent_visits_covid":"2.5","percent_visits_influenza":"2.07","percent_visits_rsv":"0.09","week_end":"2022-12-31"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"4.58","percent_visits_covid":"2.41","percent_visits_influenza":"2.23","percent_visits_rsv":"0.03","week_end":"2023-01-14"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.4","percent_visits_covid":"2.65","percent_visits_influenza":"1.71","percent_visits_rsv":"0.07","week_end":"2023-01-07"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.18","percent_visits_covid":"2.31","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-01-14"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.07","percent_visits_covid":"1.96","percent_visits_influenza":"1.12","percent_visits_rsv":"0.01","week_end":"2023-01-21"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.22","percent_visits_covid":"1.94","percent_visits_influenza":"1.29","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.41","percent_visits_covid":"1.59","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-02-04"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.49","percent_visits_covid":"1.69","percent_visits_influenza":"0.75","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.83","percent_visits_covid":"1.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.0","percent_visits_covid":"1.36","percent_visits_influenza":"0.65","percent_visits_rsv":"0.01","week_end":"2023-02-25"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.71","percent_visits_covid":"1.2","percent_visits_influenza":"0.48","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.33","percent_visits_covid":"1.13","percent_visits_influenza":"0.19","percent_visits_rsv":"0.01","week_end":"2023-03-11"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.49","percent_visits_covid":"1.07","percent_visits_influenza":"0.38","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.47","percent_visits_covid":"1.01","percent_visits_influenza":"0.43","percent_visits_rsv":"0.04","week_end":"2023-03-25"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.48","percent_visits_covid":"1.17","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.02","percent_visits_covid":"0.81","percent_visits_influenza":"0.2","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.12","percent_visits_covid":"0.76","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.09","percent_visits_covid":"0.79","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"0.77","percent_visits_covid":"0.48","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"0.84","percent_visits_covid":"0.48","percent_visits_influenza":"0.3","percent_visits_rsv":"0.06","week_end":"2023-05-06"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"0.8","percent_visits_covid":"0.43","percent_visits_influenza":"0.36","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.14","percent_visits_covid":"0.73","percent_visits_influenza":"0.4","percent_visits_rsv":"0.01","week_end":"2023-05-20"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"0.94","percent_visits_covid":"0.61","percent_visits_influenza":"0.32","percent_visits_rsv":"0.01","week_end":"2023-05-27"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.18","percent_visits_covid":"0.8","percent_visits_influenza":"0.35","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.17","percent_visits_covid":"0.84","percent_visits_influenza":"0.31","percent_visits_rsv":"0.01","week_end":"2023-06-10"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.38","percent_visits_covid":"0.88","percent_visits_influenza":"0.48","percent_visits_rsv":"0.03","week_end":"2023-06-17"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.13","percent_visits_covid":"0.83","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.86","percent_visits_covid":"1.23","percent_visits_influenza":"0.62","percent_visits_rsv":"0.04","week_end":"2023-07-01"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.6","percent_visits_covid":"1.06","percent_visits_influenza":"0.56","percent_visits_rsv":"0.02","week_end":"2023-07-08"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.09","percent_visits_covid":"1.61","percent_visits_influenza":"0.48","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.64","percent_visits_covid":"2.13","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.28","percent_visits_covid":"1.82","percent_visits_influenza":"0.46","percent_visits_rsv":"0.01","week_end":"2023-07-29"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.82","percent_visits_covid":"2.38","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-08-05"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.72","percent_visits_covid":"3.41","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Citrus","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.4","percent_visits_covid":"3.05","percent_visits_influenza":"0.33","percent_visits_rsv":"0.03","week_end":"2023-08-19"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"5.0","percent_visits_covid":"4.48","percent_visits_influenza":"0.48","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.95","percent_visits_covid":"4.28","percent_visits_influenza":"0.52","percent_visits_rsv":"0.2","week_end":"2023-09-02"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.46","percent_visits_covid":"2.89","percent_visits_influenza":"0.44","percent_visits_rsv":"0.17","week_end":"2023-09-09"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.67","percent_visits_covid":"2.15","percent_visits_influenza":"0.38","percent_visits_rsv":"0.14","week_end":"2023-09-16"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.53","percent_visits_covid":"1.62","percent_visits_influenza":"0.6","percent_visits_rsv":"0.34","week_end":"2023-09-23"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.27","percent_visits_covid":"1.21","percent_visits_influenza":"0.72","percent_visits_rsv":"0.33","week_end":"2023-09-30"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.51","percent_visits_covid":"0.95","percent_visits_influenza":"1.2","percent_visits_rsv":"0.39","week_end":"2023-10-07"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.94","percent_visits_covid":"0.91","percent_visits_influenza":"1.56","percent_visits_rsv":"0.54","week_end":"2023-10-14"}
-,{"county":"Citrus","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.05","percent_visits_covid":"0.81","percent_visits_influenza":"1.7","percent_visits_rsv":"0.57","week_end":"2023-10-21"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.11","percent_visits_covid":"0.87","percent_visits_influenza":"1.71","percent_visits_rsv":"0.56","week_end":"2023-10-28"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.74","percent_visits_covid":"0.72","percent_visits_influenza":"2.49","percent_visits_rsv":"0.53","week_end":"2023-11-04"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.16","percent_visits_covid":"0.6","percent_visits_influenza":"3.08","percent_visits_rsv":"0.5","week_end":"2023-11-11"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"5.13","percent_visits_covid":"0.7","percent_visits_influenza":"4.05","percent_visits_rsv":"0.44","week_end":"2023-11-18"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"5.9","percent_visits_covid":"0.92","percent_visits_influenza":"4.54","percent_visits_rsv":"0.57","week_end":"2023-11-25"}
-,{"county":"Citrus","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"5.26","percent_visits_covid":"0.84","percent_visits_influenza":"4.07","percent_visits_rsv":"0.43","week_end":"2023-12-02"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.66","percent_visits_covid":"0.96","percent_visits_influenza":"0.41","percent_visits_rsv":"1.32","week_end":"2022-10-01"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.87","percent_visits_covid":"0.77","percent_visits_influenza":"0.44","percent_visits_rsv":"0.67","week_end":"2022-10-08"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.81","percent_visits_covid":"0.61","percent_visits_influenza":"0.6","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.68","percent_visits_covid":"0.62","percent_visits_influenza":"1.37","percent_visits_rsv":"0.7","week_end":"2022-10-22"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.11","percent_visits_covid":"0.9","percent_visits_influenza":"2.7","percent_visits_rsv":"0.56","week_end":"2022-10-29"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.91","percent_visits_covid":"0.96","percent_visits_influenza":"5.48","percent_visits_rsv":"0.49","week_end":"2022-11-05"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"7.7","percent_visits_covid":"0.91","percent_visits_influenza":"6.22","percent_visits_rsv":"0.57","week_end":"2022-11-12"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.46","percent_visits_covid":"0.85","percent_visits_influenza":"5.24","percent_visits_rsv":"0.45","week_end":"2022-11-19"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"7.93","percent_visits_covid":"1.24","percent_visits_influenza":"6.46","percent_visits_rsv":"0.38","week_end":"2022-11-26"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.22","percent_visits_covid":"1.46","percent_visits_influenza":"4.53","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.4","percent_visits_covid":"1.53","percent_visits_influenza":"3.72","percent_visits_rsv":"0.18","week_end":"2022-12-10"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.46","percent_visits_covid":"1.89","percent_visits_influenza":"3.42","percent_visits_rsv":"0.2","week_end":"2022-12-17"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.32","percent_visits_covid":"2.17","percent_visits_influenza":"3.03","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.14","percent_visits_covid":"3.32","percent_visits_influenza":"2.64","percent_visits_rsv":"0.25","week_end":"2022-12-31"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.38","percent_visits_covid":"3.24","percent_visits_influenza":"2.02","percent_visits_rsv":"0.15","week_end":"2023-01-07"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.88","percent_visits_covid":"2.82","percent_visits_influenza":"1.0","percent_visits_rsv":"0.09","week_end":"2023-01-14"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.0","percent_visits_covid":"2.92","percent_visits_influenza":"1.06","percent_visits_rsv":"0.09","week_end":"2023-01-21"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.0","percent_visits_covid":"2.9","percent_visits_influenza":"1.05","percent_visits_rsv":"0.09","week_end":"2023-01-28"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.71","percent_visits_covid":"2.51","percent_visits_influenza":"1.21","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.01","percent_visits_covid":"2.07","percent_visits_influenza":"0.9","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.07","percent_visits_covid":"1.36","percent_visits_influenza":"0.64","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.67","percent_visits_covid":"1.18","percent_visits_influenza":"0.42","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.48","percent_visits_covid":"1.08","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.12","percent_visits_covid":"0.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.06","week_end":"2023-03-11"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.29","percent_visits_covid":"0.97","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.22","percent_visits_covid":"0.95","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-03-25"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.04","percent_visits_covid":"0.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.0","percent_visits_covid":"0.72","percent_visits_influenza":"0.24","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.97","percent_visits_covid":"0.69","percent_visits_influenza":"0.28","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.78","percent_visits_covid":"0.55","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.89","percent_visits_covid":"0.64","percent_visits_influenza":"0.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.01","percent_visits_covid":"0.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.06","percent_visits_covid":"0.69","percent_visits_influenza":"0.34","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.99","percent_visits_covid":"0.59","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-05-20"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.26","percent_visits_covid":"0.62","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.49","percent_visits_covid":"0.92","percent_visits_influenza":"0.53","percent_visits_rsv":"0.07","week_end":"2023-06-03"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.57","percent_visits_covid":"0.97","percent_visits_influenza":"0.53","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.38","percent_visits_covid":"0.99","percent_visits_influenza":"0.34","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.07","percent_visits_covid":"2.77","percent_visits_influenza":"2.36","percent_visits_rsv":"0.13","week_end":"2023-01-21"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.54","percent_visits_covid":"1.08","percent_visits_influenza":"0.44","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.76","percent_visits_covid":"1.25","percent_visits_influenza":"0.47","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.86","percent_visits_covid":"1.35","percent_visits_influenza":"0.43","percent_visits_rsv":"0.09","week_end":"2023-07-08"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.97","percent_visits_covid":"1.52","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-07-15"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.06","percent_visits_covid":"1.52","percent_visits_influenza":"0.49","percent_visits_rsv":"0.06","week_end":"2023-07-22"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.55","percent_visits_covid":"2.03","percent_visits_influenza":"0.42","percent_visits_rsv":"0.12","week_end":"2023-07-29"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.79","percent_visits_covid":"2.24","percent_visits_influenza":"0.47","percent_visits_rsv":"0.09","week_end":"2023-08-05"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.11","percent_visits_covid":"2.59","percent_visits_influenza":"0.4","percent_visits_rsv":"0.14","week_end":"2023-08-12"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.67","percent_visits_covid":"3.16","percent_visits_influenza":"0.43","percent_visits_rsv":"0.1","week_end":"2023-08-19"}
-,{"county":"Clay","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.7","percent_visits_covid":"3.96","percent_visits_influenza":"0.58","percent_visits_rsv":"0.21","week_end":"2023-08-26"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.34","percent_visits_covid":"4.65","percent_visits_influenza":"0.55","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.23","percent_visits_covid":"3.58","percent_visits_influenza":"0.47","percent_visits_rsv":"0.21","week_end":"2023-09-09"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.31","percent_visits_covid":"2.55","percent_visits_influenza":"0.48","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.95","percent_visits_covid":"1.93","percent_visits_influenza":"0.76","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.84","percent_visits_covid":"1.39","percent_visits_influenza":"1.0","percent_visits_rsv":"0.49","week_end":"2023-09-30"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.51","percent_visits_covid":"1.3","percent_visits_influenza":"1.28","percent_visits_rsv":"0.99","week_end":"2023-10-07"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"1.34","percent_visits_rsv":"0.88","week_end":"2023-10-14"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.67","percent_visits_covid":"0.93","percent_visits_influenza":"1.75","percent_visits_rsv":"1.07","week_end":"2023-10-21"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.16","percent_visits_covid":"0.87","percent_visits_influenza":"2.08","percent_visits_rsv":"1.24","week_end":"2023-10-28"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.37","percent_visits_covid":"0.82","percent_visits_influenza":"2.35","percent_visits_rsv":"1.25","week_end":"2023-11-04"}
-,{"county":"Clay","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.5","percent_visits_covid":"0.87","percent_visits_influenza":"3.49","percent_visits_rsv":"1.2","week_end":"2023-11-11"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.21","percent_visits_covid":"0.65","percent_visits_influenza":"3.67","percent_visits_rsv":"0.96","week_end":"2023-11-18"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.57","percent_visits_covid":"0.74","percent_visits_influenza":"4.02","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Clay","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.41","percent_visits_covid":"0.77","percent_visits_influenza":"3.95","percent_visits_rsv":"0.74","week_end":"2023-12-02"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.31","percent_visits_covid":"1.88","percent_visits_influenza":"0.69","percent_visits_rsv":"0.79","week_end":"2022-10-01"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.56","percent_visits_covid":"1.24","percent_visits_influenza":"0.62","percent_visits_rsv":"0.75","week_end":"2022-10-08"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.84","percent_visits_covid":"1.61","percent_visits_influenza":"0.59","percent_visits_rsv":"0.64","week_end":"2022-10-15"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.87","percent_visits_covid":"1.84","percent_visits_influenza":"0.65","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.35","percent_visits_covid":"1.75","percent_visits_influenza":"1.18","percent_visits_rsv":"0.45","week_end":"2022-10-29"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.95","percent_visits_covid":"1.88","percent_visits_influenza":"2.4","percent_visits_rsv":"0.68","week_end":"2022-11-05"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.32","percent_visits_rsv":"0.57","week_end":"2022-11-12"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.74","percent_visits_covid":"1.9","percent_visits_influenza":"4.27","percent_visits_rsv":"0.67","week_end":"2022-11-19"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.83","percent_visits_covid":"2.25","percent_visits_influenza":"4.9","percent_visits_rsv":"0.8","week_end":"2022-11-26"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.19","percent_visits_covid":"2.42","percent_visits_influenza":"4.35","percent_visits_rsv":"0.58","week_end":"2022-12-03"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.4","percent_visits_covid":"2.71","percent_visits_influenza":"4.31","percent_visits_rsv":"0.54","week_end":"2022-12-10"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"9.12","percent_visits_covid":"2.99","percent_visits_influenza":"5.63","percent_visits_rsv":"0.66","week_end":"2022-12-17"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"8.95","percent_visits_covid":"3.23","percent_visits_influenza":"5.21","percent_visits_rsv":"0.63","week_end":"2022-12-24"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"9.68","percent_visits_covid":"4.67","percent_visits_influenza":"4.64","percent_visits_rsv":"0.61","week_end":"2022-12-31"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.34","percent_visits_covid":"3.83","percent_visits_influenza":"3.09","percent_visits_rsv":"0.55","week_end":"2023-01-07"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.37","percent_visits_covid":"3.22","percent_visits_influenza":"1.75","percent_visits_rsv":"0.48","week_end":"2023-01-14"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.68","percent_visits_covid":"2.81","percent_visits_influenza":"1.5","percent_visits_rsv":"0.49","week_end":"2023-01-21"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.34","percent_visits_covid":"2.69","percent_visits_influenza":"1.37","percent_visits_rsv":"0.31","week_end":"2023-01-28"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.63","percent_visits_covid":"2.31","percent_visits_influenza":"1.1","percent_visits_rsv":"0.26","week_end":"2023-02-04"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.24","percent_visits_covid":"2.14","percent_visits_influenza":"0.87","percent_visits_rsv":"0.3","week_end":"2023-02-11"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.2","percent_visits_covid":"2.08","percent_visits_influenza":"0.89","percent_visits_rsv":"0.27","week_end":"2023-02-18"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.3","percent_visits_covid":"2.08","percent_visits_influenza":"0.8","percent_visits_rsv":"0.43","week_end":"2023-02-25"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.06","percent_visits_covid":"2.01","percent_visits_influenza":"0.85","percent_visits_rsv":"0.25","week_end":"2023-03-04"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.84","percent_visits_covid":"1.7","percent_visits_influenza":"0.9","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.79","percent_visits_covid":"1.79","percent_visits_influenza":"0.8","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.62","percent_visits_covid":"1.76","percent_visits_influenza":"0.7","percent_visits_rsv":"0.2","week_end":"2023-03-25"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.82","percent_visits_covid":"1.88","percent_visits_influenza":"0.73","percent_visits_rsv":"0.26","week_end":"2023-04-01"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.34","percent_visits_covid":"1.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.16","week_end":"2023-04-08"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.4","percent_visits_covid":"1.6","percent_visits_influenza":"0.7","percent_visits_rsv":"0.12","week_end":"2023-04-15"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.11","percent_visits_covid":"1.38","percent_visits_influenza":"0.54","percent_visits_rsv":"0.19","week_end":"2023-04-22"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.97","percent_visits_covid":"1.37","percent_visits_influenza":"0.48","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.81","percent_visits_covid":"1.09","percent_visits_influenza":"0.6","percent_visits_rsv":"0.14","week_end":"2023-05-06"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.89","percent_visits_covid":"1.03","percent_visits_influenza":"0.69","percent_visits_rsv":"0.19","week_end":"2023-05-13"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.97","percent_visits_covid":"1.04","percent_visits_influenza":"0.79","percent_visits_rsv":"0.16","week_end":"2023-05-20"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.45","percent_visits_covid":"1.15","percent_visits_influenza":"1.09","percent_visits_rsv":"0.24","week_end":"2023-05-27"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.58","percent_visits_covid":"1.25","percent_visits_influenza":"1.17","percent_visits_rsv":"0.16","week_end":"2023-06-03"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.39","percent_visits_covid":"1.27","percent_visits_influenza":"1.01","percent_visits_rsv":"0.15","week_end":"2023-06-10"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.68","percent_visits_covid":"1.51","percent_visits_influenza":"0.95","percent_visits_rsv":"0.26","week_end":"2023-06-17"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.46","percent_visits_covid":"1.37","percent_visits_influenza":"0.82","percent_visits_rsv":"0.3","week_end":"2023-06-24"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.48","percent_visits_covid":"1.47","percent_visits_influenza":"0.84","percent_visits_rsv":"0.2","week_end":"2023-07-01"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.88","percent_visits_covid":"1.8","percent_visits_influenza":"0.89","percent_visits_rsv":"0.21","week_end":"2023-07-08"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.01","percent_visits_covid":"2.29","percent_visits_influenza":"0.54","percent_visits_rsv":"0.19","week_end":"2023-07-15"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.3","percent_visits_covid":"2.66","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-07-22"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.03","percent_visits_covid":"3.2","percent_visits_influenza":"0.51","percent_visits_rsv":"0.38","week_end":"2023-07-29"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.78","percent_visits_covid":"3.97","percent_visits_influenza":"0.4","percent_visits_rsv":"0.43","week_end":"2023-08-05"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.55","percent_visits_covid":"3.82","percent_visits_influenza":"0.45","percent_visits_rsv":"0.35","week_end":"2023-08-12"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.21","percent_visits_covid":"4.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.36","week_end":"2023-08-19"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.84","percent_visits_covid":"5.66","percent_visits_influenza":"0.78","percent_visits_rsv":"0.46","week_end":"2023-08-26"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.32","percent_visits_covid":"4.25","percent_visits_influenza":"0.64","percent_visits_rsv":"0.49","week_end":"2023-09-02"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.21","percent_visits_covid":"3.24","percent_visits_influenza":"0.45","percent_visits_rsv":"0.57","week_end":"2023-09-09"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.36","percent_visits_covid":"2.15","percent_visits_influenza":"0.76","percent_visits_rsv":"0.48","week_end":"2023-09-16"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.62","percent_visits_covid":"2.17","percent_visits_influenza":"0.85","percent_visits_rsv":"0.66","week_end":"2023-09-23"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.98","percent_visits_covid":"1.94","percent_visits_influenza":"1.05","percent_visits_rsv":"1.08","week_end":"2023-09-30"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.98","percent_visits_covid":"1.59","percent_visits_influenza":"1.3","percent_visits_rsv":"1.17","week_end":"2023-10-07"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.44","percent_visits_covid":"1.41","percent_visits_influenza":"1.85","percent_visits_rsv":"1.21","week_end":"2023-10-14"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.35","percent_visits_covid":"1.36","percent_visits_influenza":"2.17","percent_visits_rsv":"0.9","week_end":"2023-10-21"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.74","percent_visits_covid":"1.33","percent_visits_influenza":"2.67","percent_visits_rsv":"0.82","week_end":"2023-10-28"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.81","percent_visits_covid":"0.89","percent_visits_influenza":"3.2","percent_visits_rsv":"0.77","week_end":"2023-11-04"}
-,{"county":"Collier","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.54","percent_visits_covid":"0.84","percent_visits_influenza":"4.06","percent_visits_rsv":"0.72","week_end":"2023-11-11"}
-,{"county":"Collier","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.22","percent_visits_covid":"1.05","percent_visits_influenza":"4.31","percent_visits_rsv":"0.91","week_end":"2023-11-18"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.92","percent_visits_covid":"1.29","percent_visits_influenza":"3.87","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Collier","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.73","percent_visits_covid":"1.05","percent_visits_influenza":"3.24","percent_visits_rsv":"0.51","week_end":"2023-12-02"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.13","percent_visits_covid":"0.78","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Columbia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.0","percent_visits_covid":"0.66","percent_visits_influenza":"0.32","percent_visits_rsv":"0.02","week_end":"2023-05-20"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Columbia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Columbia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.44","percent_visits_covid":"1.77","percent_visits_influenza":"0.35","percent_visits_rsv":"0.38","week_end":"2022-10-01"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.19","percent_visits_covid":"1.55","percent_visits_influenza":"0.31","percent_visits_rsv":"0.35","week_end":"2022-10-08"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.62","percent_visits_covid":"2.09","percent_visits_influenza":"0.36","percent_visits_rsv":"0.2","week_end":"2022-10-15"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.62","percent_visits_covid":"2.15","percent_visits_influenza":"0.26","percent_visits_rsv":"0.25","week_end":"2022-10-22"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.07","percent_visits_covid":"2.46","percent_visits_influenza":"0.41","percent_visits_rsv":"0.2","week_end":"2022-10-29"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.85","percent_visits_covid":"2.74","percent_visits_influenza":"0.94","percent_visits_rsv":"0.18","week_end":"2022-11-05"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.04","percent_visits_covid":"2.23","percent_visits_influenza":"1.61","percent_visits_rsv":"0.21","week_end":"2022-11-12"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.16","percent_visits_covid":"2.43","percent_visits_influenza":"1.71","percent_visits_rsv":"0.12","week_end":"2022-11-19"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.25","percent_visits_covid":"2.31","percent_visits_influenza":"2.88","percent_visits_rsv":"0.12","week_end":"2022-11-26"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.16","percent_visits_covid":"2.5","percent_visits_influenza":"2.56","percent_visits_rsv":"0.17","week_end":"2022-12-03"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.86","percent_visits_covid":"2.39","percent_visits_influenza":"2.34","percent_visits_rsv":"0.15","week_end":"2022-12-10"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.62","percent_visits_covid":"2.8","percent_visits_influenza":"2.7","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"6.11","percent_visits_covid":"2.87","percent_visits_influenza":"3.16","percent_visits_rsv":"0.14","week_end":"2022-12-24"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"6.84","percent_visits_covid":"3.68","percent_visits_influenza":"3.18","percent_visits_rsv":"0.08","week_end":"2022-12-31"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.74","percent_visits_covid":"3.46","percent_visits_influenza":"2.23","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.53","percent_visits_covid":"2.78","percent_visits_influenza":"1.65","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.17","percent_visits_covid":"2.78","percent_visits_influenza":"1.29","percent_visits_rsv":"0.1","week_end":"2023-01-21"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.06","percent_visits_covid":"2.16","percent_visits_influenza":"0.86","percent_visits_rsv":"0.1","week_end":"2023-01-28"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.81","percent_visits_covid":"2.68","percent_visits_influenza":"1.13","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.39","percent_visits_covid":"2.36","percent_visits_influenza":"0.96","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.28","percent_visits_covid":"2.2","percent_visits_influenza":"1.02","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.08","percent_visits_covid":"2.04","percent_visits_influenza":"1.0","percent_visits_rsv":"0.05","week_end":"2023-02-25"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.42","percent_visits_covid":"2.49","percent_visits_influenza":"0.89","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.0","percent_visits_covid":"2.42","percent_visits_influenza":"0.54","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.77","percent_visits_covid":"2.2","percent_visits_influenza":"0.55","percent_visits_rsv":"0.03","week_end":"2023-03-18"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.35","percent_visits_covid":"1.93","percent_visits_influenza":"0.36","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.16","percent_visits_covid":"1.68","percent_visits_influenza":"0.49","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.97","percent_visits_covid":"1.56","percent_visits_influenza":"0.39","percent_visits_rsv":"0.03","week_end":"2023-04-08"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.79","percent_visits_covid":"1.41","percent_visits_influenza":"0.36","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.8","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.25","percent_visits_covid":"0.95","percent_visits_influenza":"0.28","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.56","percent_visits_covid":"1.16","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.07","percent_visits_covid":"0.75","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.36","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"0.92","percent_visits_covid":"0.66","percent_visits_influenza":"0.25","percent_visits_rsv":"0.02","week_end":"2023-06-10"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.2","percent_visits_covid":"0.66","percent_visits_influenza":"0.56","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.48","percent_visits_covid":"1.13","percent_visits_influenza":"0.32","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.49","percent_visits_covid":"1.14","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.61","percent_visits_covid":"1.23","percent_visits_influenza":"0.4","percent_visits_rsv":"0.02","week_end":"2023-07-08"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.46","percent_visits_covid":"1.13","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.87","percent_visits_covid":"1.49","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.45","percent_visits_covid":"2.02","percent_visits_influenza":"0.38","percent_visits_rsv":"0.05","week_end":"2023-07-29"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.68","percent_visits_covid":"2.34","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.58","percent_visits_covid":"3.2","percent_visits_influenza":"0.38","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"DeSoto","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.4","percent_visits_covid":"3.84","percent_visits_influenza":"0.58","percent_visits_rsv":"0.05","week_end":"2023-08-19"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.8","percent_visits_covid":"4.23","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-08-26"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.19","percent_visits_covid":"4.57","percent_visits_influenza":"0.5","percent_visits_rsv":"0.2","week_end":"2023-09-02"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.88","percent_visits_covid":"3.37","percent_visits_influenza":"0.45","percent_visits_rsv":"0.11","week_end":"2023-09-09"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.13","percent_visits_covid":"2.66","percent_visits_influenza":"0.42","percent_visits_rsv":"0.08","week_end":"2023-09-16"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.07","percent_visits_covid":"2.38","percent_visits_influenza":"0.56","percent_visits_rsv":"0.15","week_end":"2023-09-23"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.6","percent_visits_covid":"1.75","percent_visits_influenza":"0.62","percent_visits_rsv":"0.25","week_end":"2023-09-30"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.27","percent_visits_covid":"1.71","percent_visits_influenza":"1.28","percent_visits_rsv":"0.3","week_end":"2023-10-07"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.23","percent_visits_covid":"1.59","percent_visits_influenza":"1.28","percent_visits_rsv":"0.41","week_end":"2023-10-14"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.44","percent_visits_covid":"1.46","percent_visits_influenza":"1.38","percent_visits_rsv":"0.64","week_end":"2023-10-21"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.24","percent_visits_covid":"1.24","percent_visits_influenza":"2.2","percent_visits_rsv":"0.82","week_end":"2023-10-28"}
-,{"county":"DeSoto","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.97","percent_visits_covid":"1.18","percent_visits_influenza":"2.17","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.09","percent_visits_covid":"1.18","percent_visits_influenza":"2.36","percent_visits_rsv":"0.55","week_end":"2023-11-11"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.39","percent_visits_covid":"1.06","percent_visits_influenza":"2.82","percent_visits_rsv":"0.55","week_end":"2023-11-18"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.92","percent_visits_covid":"1.34","percent_visits_influenza":"3.15","percent_visits_rsv":"0.49","week_end":"2023-11-25"}
-,{"county":"DeSoto","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.4","percent_visits_covid":"1.3","percent_visits_influenza":"2.66","percent_visits_rsv":"0.5","week_end":"2023-12-02"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.46","percent_visits_covid":"1.89","percent_visits_influenza":"3.42","percent_visits_rsv":"0.2","week_end":"2022-12-17"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Dixie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Dixie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Dixie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.66","percent_visits_covid":"0.96","percent_visits_influenza":"0.41","percent_visits_rsv":"1.32","week_end":"2022-10-01"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.87","percent_visits_covid":"0.77","percent_visits_influenza":"0.44","percent_visits_rsv":"0.67","week_end":"2022-10-08"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.81","percent_visits_covid":"0.61","percent_visits_influenza":"0.6","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.68","percent_visits_covid":"0.62","percent_visits_influenza":"1.37","percent_visits_rsv":"0.7","week_end":"2022-10-22"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.11","percent_visits_covid":"0.9","percent_visits_influenza":"2.7","percent_visits_rsv":"0.56","week_end":"2022-10-29"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.91","percent_visits_covid":"0.96","percent_visits_influenza":"5.48","percent_visits_rsv":"0.49","week_end":"2022-11-05"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"7.7","percent_visits_covid":"0.91","percent_visits_influenza":"6.22","percent_visits_rsv":"0.57","week_end":"2022-11-12"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.46","percent_visits_covid":"0.85","percent_visits_influenza":"5.24","percent_visits_rsv":"0.45","week_end":"2022-11-19"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"7.93","percent_visits_covid":"1.24","percent_visits_influenza":"6.46","percent_visits_rsv":"0.38","week_end":"2022-11-26"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.22","percent_visits_covid":"1.46","percent_visits_influenza":"4.53","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.4","percent_visits_covid":"1.53","percent_visits_influenza":"3.72","percent_visits_rsv":"0.18","week_end":"2022-12-10"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.65","percent_visits_covid":"2.37","percent_visits_influenza":"1.25","percent_visits_rsv":"0.12","week_end":"2023-01-28"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.32","percent_visits_covid":"2.17","percent_visits_influenza":"3.03","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.14","percent_visits_covid":"3.32","percent_visits_influenza":"2.64","percent_visits_rsv":"0.25","week_end":"2022-12-31"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.38","percent_visits_covid":"3.24","percent_visits_influenza":"2.02","percent_visits_rsv":"0.15","week_end":"2023-01-07"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.88","percent_visits_covid":"2.82","percent_visits_influenza":"1.0","percent_visits_rsv":"0.09","week_end":"2023-01-14"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.0","percent_visits_covid":"2.92","percent_visits_influenza":"1.06","percent_visits_rsv":"0.09","week_end":"2023-01-21"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.0","percent_visits_covid":"2.9","percent_visits_influenza":"1.05","percent_visits_rsv":"0.09","week_end":"2023-01-28"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.71","percent_visits_covid":"2.51","percent_visits_influenza":"1.21","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.01","percent_visits_covid":"2.07","percent_visits_influenza":"0.9","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.07","percent_visits_covid":"1.36","percent_visits_influenza":"0.64","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.67","percent_visits_covid":"1.18","percent_visits_influenza":"0.42","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.48","percent_visits_covid":"1.08","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.12","percent_visits_covid":"0.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.06","week_end":"2023-03-11"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.29","percent_visits_covid":"0.97","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.22","percent_visits_covid":"0.95","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-03-25"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.04","percent_visits_covid":"0.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.0","percent_visits_covid":"0.72","percent_visits_influenza":"0.24","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.97","percent_visits_covid":"0.69","percent_visits_influenza":"0.28","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.78","percent_visits_covid":"0.55","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.89","percent_visits_covid":"0.64","percent_visits_influenza":"0.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.01","percent_visits_covid":"0.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.06","percent_visits_covid":"0.69","percent_visits_influenza":"0.34","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.99","percent_visits_covid":"0.59","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-05-20"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.26","percent_visits_covid":"0.62","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.49","percent_visits_covid":"0.92","percent_visits_influenza":"0.53","percent_visits_rsv":"0.07","week_end":"2023-06-03"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.57","percent_visits_covid":"0.97","percent_visits_influenza":"0.53","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.38","percent_visits_covid":"0.99","percent_visits_influenza":"0.34","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.54","percent_visits_covid":"1.08","percent_visits_influenza":"0.44","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.76","percent_visits_covid":"1.25","percent_visits_influenza":"0.47","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.86","percent_visits_covid":"1.35","percent_visits_influenza":"0.43","percent_visits_rsv":"0.09","week_end":"2023-07-08"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.97","percent_visits_covid":"1.52","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-07-15"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.06","percent_visits_covid":"1.52","percent_visits_influenza":"0.49","percent_visits_rsv":"0.06","week_end":"2023-07-22"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.55","percent_visits_covid":"2.03","percent_visits_influenza":"0.42","percent_visits_rsv":"0.12","week_end":"2023-07-29"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.79","percent_visits_covid":"2.24","percent_visits_influenza":"0.47","percent_visits_rsv":"0.09","week_end":"2023-08-05"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.11","percent_visits_covid":"2.59","percent_visits_influenza":"0.4","percent_visits_rsv":"0.14","week_end":"2023-08-12"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.67","percent_visits_covid":"3.16","percent_visits_influenza":"0.43","percent_visits_rsv":"0.1","week_end":"2023-08-19"}
-,{"county":"Duval","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.7","percent_visits_covid":"3.96","percent_visits_influenza":"0.58","percent_visits_rsv":"0.21","week_end":"2023-08-26"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.34","percent_visits_covid":"4.65","percent_visits_influenza":"0.55","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.23","percent_visits_covid":"3.58","percent_visits_influenza":"0.47","percent_visits_rsv":"0.21","week_end":"2023-09-09"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.31","percent_visits_covid":"2.55","percent_visits_influenza":"0.48","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.95","percent_visits_covid":"1.93","percent_visits_influenza":"0.76","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.84","percent_visits_covid":"1.39","percent_visits_influenza":"1.0","percent_visits_rsv":"0.49","week_end":"2023-09-30"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.51","percent_visits_covid":"1.3","percent_visits_influenza":"1.28","percent_visits_rsv":"0.99","week_end":"2023-10-07"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"1.34","percent_visits_rsv":"0.88","week_end":"2023-10-14"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.67","percent_visits_covid":"0.93","percent_visits_influenza":"1.75","percent_visits_rsv":"1.07","week_end":"2023-10-21"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.16","percent_visits_covid":"0.87","percent_visits_influenza":"2.08","percent_visits_rsv":"1.24","week_end":"2023-10-28"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.37","percent_visits_covid":"0.82","percent_visits_influenza":"2.35","percent_visits_rsv":"1.25","week_end":"2023-11-04"}
-,{"county":"Duval","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.5","percent_visits_covid":"0.87","percent_visits_influenza":"3.49","percent_visits_rsv":"1.2","week_end":"2023-11-11"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.21","percent_visits_covid":"0.65","percent_visits_influenza":"3.67","percent_visits_rsv":"0.96","week_end":"2023-11-18"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.57","percent_visits_covid":"0.74","percent_visits_influenza":"4.02","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Duval","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.41","percent_visits_covid":"0.77","percent_visits_influenza":"3.95","percent_visits_rsv":"0.74","week_end":"2023-12-02"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.56","percent_visits_covid":"1.04","percent_visits_influenza":"0.96","percent_visits_rsv":"0.58","week_end":"2022-10-01"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.81","percent_visits_covid":"0.84","percent_visits_influenza":"2.37","percent_visits_rsv":"0.63","week_end":"2022-10-08"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.41","percent_visits_covid":"0.52","percent_visits_influenza":"3.38","percent_visits_rsv":"0.53","week_end":"2022-10-15"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.61","percent_visits_covid":"0.66","percent_visits_influenza":"5.64","percent_visits_rsv":"0.38","week_end":"2022-10-22"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"10.89","percent_visits_covid":"0.78","percent_visits_influenza":"9.83","percent_visits_rsv":"0.34","week_end":"2022-10-29"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"12.08","percent_visits_covid":"0.8","percent_visits_influenza":"11.1","percent_visits_rsv":"0.22","week_end":"2022-11-05"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"9.37","percent_visits_covid":"0.6","percent_visits_influenza":"8.48","percent_visits_rsv":"0.33","week_end":"2022-11-12"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.8","percent_visits_covid":"1.02","percent_visits_influenza":"5.71","percent_visits_rsv":"0.14","week_end":"2022-11-19"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.62","percent_visits_covid":"1.27","percent_visits_influenza":"5.03","percent_visits_rsv":"0.36","week_end":"2022-11-26"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"5.65","percent_visits_covid":"1.71","percent_visits_influenza":"3.87","percent_visits_rsv":"0.22","week_end":"2022-12-03"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.71","percent_visits_covid":"1.37","percent_visits_influenza":"2.22","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.93","percent_visits_covid":"1.79","percent_visits_influenza":"1.96","percent_visits_rsv":"0.23","week_end":"2022-12-17"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.7","percent_visits_covid":"2.5","percent_visits_influenza":"2.09","percent_visits_rsv":"0.16","week_end":"2022-12-24"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.12","percent_visits_covid":"3.87","percent_visits_influenza":"2.16","percent_visits_rsv":"0.16","week_end":"2022-12-31"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.84","percent_visits_covid":"3.35","percent_visits_influenza":"1.47","percent_visits_rsv":"0.1","week_end":"2023-01-07"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.19","percent_visits_covid":"2.33","percent_visits_influenza":"0.82","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.68","percent_visits_covid":"2.15","percent_visits_influenza":"0.53","percent_visits_rsv":"0.04","week_end":"2023-01-21"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.48","percent_visits_covid":"1.82","percent_visits_influenza":"0.68","percent_visits_rsv":"0.05","week_end":"2023-01-28"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.5","percent_visits_covid":"1.96","percent_visits_influenza":"0.54","percent_visits_rsv":"0.03","week_end":"2023-02-04"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.31","percent_visits_covid":"1.78","percent_visits_influenza":"0.53","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.21","percent_visits_covid":"1.59","percent_visits_influenza":"0.6","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.85","percent_visits_covid":"1.46","percent_visits_influenza":"0.45","percent_visits_rsv":"0.02","week_end":"2023-02-25"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.48","percent_visits_covid":"1.1","percent_visits_influenza":"0.33","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.25","percent_visits_covid":"0.92","percent_visits_influenza":"0.24","percent_visits_rsv":"0.1","week_end":"2023-03-11"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.12","percent_visits_covid":"0.88","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-03-18"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.05","percent_visits_covid":"0.85","percent_visits_influenza":"0.17","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.23","percent_visits_covid":"1.05","percent_visits_influenza":"0.18","percent_visits_rsv":"0.03","week_end":"2023-04-01"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.37","percent_visits_covid":"0.96","percent_visits_influenza":"0.33","percent_visits_rsv":"0.08","week_end":"2023-04-08"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.96","percent_visits_covid":"0.72","percent_visits_influenza":"0.25","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.94","percent_visits_covid":"0.71","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-04-22"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.78","percent_visits_influenza":"0.38","percent_visits_rsv":"0.06","week_end":"2023-04-29"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.17","percent_visits_covid":"0.65","percent_visits_influenza":"0.49","percent_visits_rsv":"0.05","week_end":"2023-05-06"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.11","percent_visits_covid":"0.64","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.09","percent_visits_covid":"0.67","percent_visits_influenza":"0.36","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.01","percent_visits_covid":"0.63","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.64","percent_visits_influenza":"0.48","percent_visits_rsv":"0.09","week_end":"2023-06-03"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.76","percent_visits_influenza":"0.41","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.96","percent_visits_covid":"0.52","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.78","percent_visits_covid":"0.54","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-06-24"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.77","percent_visits_covid":"0.61","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.92","percent_visits_covid":"0.68","percent_visits_influenza":"0.2","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.39","percent_visits_covid":"1.14","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.73","percent_visits_covid":"1.45","percent_visits_influenza":"0.25","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.81","percent_visits_covid":"1.53","percent_visits_influenza":"0.28","percent_visits_rsv":"0.04","week_end":"2023-07-29"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.36","percent_visits_covid":"2.13","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-08-05"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.02","percent_visits_covid":"2.56","percent_visits_influenza":"0.46","percent_visits_rsv":"0.07","week_end":"2023-08-12"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.25","percent_visits_covid":"2.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.09","week_end":"2023-08-19"}
-,{"county":"Escambia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.52","percent_visits_covid":"3.99","percent_visits_influenza":"0.5","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.73","percent_visits_covid":"4.23","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.81","percent_visits_covid":"3.33","percent_visits_influenza":"0.49","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.21","percent_visits_covid":"2.53","percent_visits_influenza":"0.54","percent_visits_rsv":"0.17","week_end":"2023-09-16"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.71","percent_visits_covid":"2.06","percent_visits_influenza":"0.5","percent_visits_rsv":"0.18","week_end":"2023-09-23"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.61","percent_visits_covid":"1.76","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-30"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.13","percent_visits_covid":"1.22","percent_visits_influenza":"0.66","percent_visits_rsv":"0.29","week_end":"2023-10-07"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.4","percent_visits_covid":"1.29","percent_visits_influenza":"0.7","percent_visits_rsv":"0.46","week_end":"2023-10-14"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.46","percent_visits_covid":"0.83","percent_visits_influenza":"0.89","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.97","percent_visits_covid":"1.1","percent_visits_influenza":"1.0","percent_visits_rsv":"0.92","week_end":"2023-10-28"}
-,{"county":"Escambia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.09","percent_visits_covid":"0.77","percent_visits_influenza":"1.35","percent_visits_rsv":"1.04","week_end":"2023-11-04"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.25","percent_visits_covid":"1.07","percent_visits_influenza":"2.08","percent_visits_rsv":"1.2","week_end":"2023-11-11"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.74","percent_visits_covid":"0.62","percent_visits_influenza":"2.38","percent_visits_rsv":"0.82","week_end":"2023-11-18"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.08","percent_visits_covid":"0.64","percent_visits_influenza":"2.48","percent_visits_rsv":"1.08","week_end":"2023-11-25"}
-,{"county":"Escambia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.65","percent_visits_covid":"1.0","percent_visits_influenza":"2.92","percent_visits_rsv":"0.81","week_end":"2023-12-02"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.01","percent_visits_covid":"1.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.84","week_end":"2022-10-01"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.17","percent_visits_covid":"1.33","percent_visits_influenza":"0.35","percent_visits_rsv":"0.5","week_end":"2022-10-08"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.04","percent_visits_covid":"1.14","percent_visits_influenza":"0.52","percent_visits_rsv":"0.39","week_end":"2022-10-15"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.17","percent_visits_influenza":"0.92","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.69","percent_visits_covid":"1.24","percent_visits_influenza":"1.92","percent_visits_rsv":"0.55","week_end":"2022-10-29"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.56","percent_visits_covid":"1.24","percent_visits_influenza":"2.94","percent_visits_rsv":"0.42","week_end":"2022-11-05"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.62","percent_visits_covid":"1.39","percent_visits_influenza":"3.77","percent_visits_rsv":"0.51","week_end":"2022-11-12"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"1.29","percent_visits_influenza":"3.02","percent_visits_rsv":"0.41","week_end":"2022-11-19"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.93","percent_visits_covid":"1.68","percent_visits_influenza":"3.87","percent_visits_rsv":"0.45","week_end":"2022-11-26"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.38","percent_visits_covid":"2.16","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.23","percent_visits_covid":"2.28","percent_visits_influenza":"3.73","percent_visits_rsv":"0.3","week_end":"2022-12-10"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.6","percent_visits_covid":"2.63","percent_visits_influenza":"3.85","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.19","percent_visits_covid":"2.88","percent_visits_influenza":"4.19","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"8.36","percent_visits_covid":"4.03","percent_visits_influenza":"4.22","percent_visits_rsv":"0.26","week_end":"2022-12-31"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.15","percent_visits_covid":"3.82","percent_visits_influenza":"3.24","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.24","percent_visits_covid":"2.99","percent_visits_influenza":"2.2","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.7","percent_visits_covid":"2.77","percent_visits_influenza":"1.85","percent_visits_rsv":"0.14","week_end":"2023-01-21"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"2.5","percent_visits_influenza":"1.42","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.46","percent_visits_covid":"2.23","percent_visits_influenza":"1.18","percent_visits_rsv":"0.1","week_end":"2023-02-04"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.84","percent_visits_covid":"1.8","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-02-11"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.57","percent_visits_covid":"1.69","percent_visits_influenza":"0.78","percent_visits_rsv":"0.1","week_end":"2023-02-18"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.13","percent_visits_covid":"1.5","percent_visits_influenza":"0.57","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.11","percent_visits_covid":"1.49","percent_visits_influenza":"0.54","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.17","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.58","percent_visits_covid":"1.18","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.14","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.8","percent_visits_covid":"1.29","percent_visits_influenza":"0.46","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.64","percent_visits_covid":"1.14","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-15"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.48","percent_visits_covid":"0.98","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.59","percent_visits_covid":"0.88","percent_visits_influenza":"0.68","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.63","percent_visits_covid":"0.85","percent_visits_influenza":"0.75","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"0.83","percent_visits_influenza":"0.83","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.73","percent_visits_covid":"0.83","percent_visits_influenza":"0.86","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.12","percent_visits_covid":"1.06","percent_visits_influenza":"1.01","percent_visits_rsv":"0.06","week_end":"2023-05-27"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.31","percent_visits_influenza":"1.16","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.21","percent_visits_covid":"1.16","percent_visits_influenza":"0.97","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.94","percent_visits_covid":"1.18","percent_visits_influenza":"0.74","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.05","percent_visits_covid":"1.29","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.09","percent_visits_covid":"1.37","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-07-01"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.36","percent_visits_covid":"1.62","percent_visits_influenza":"0.71","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.54","percent_visits_covid":"1.89","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.0","percent_visits_covid":"2.35","percent_visits_influenza":"0.59","percent_visits_rsv":"0.07","week_end":"2023-07-22"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.49","percent_visits_covid":"2.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-07-29"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.98","percent_visits_covid":"3.43","percent_visits_influenza":"0.51","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.23","percent_visits_covid":"3.75","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.86","percent_visits_covid":"4.25","percent_visits_influenza":"0.51","percent_visits_rsv":"0.13","week_end":"2023-08-19"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.72","percent_visits_covid":"4.94","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.61","percent_visits_covid":"4.66","percent_visits_influenza":"0.82","percent_visits_rsv":"0.16","week_end":"2023-09-02"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"3.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-09"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.75","percent_visits_covid":"2.8","percent_visits_influenza":"0.77","percent_visits_rsv":"0.21","week_end":"2023-09-16"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.43","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.35","week_end":"2023-09-23"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.36","percent_visits_covid":"1.81","percent_visits_influenza":"1.17","percent_visits_rsv":"0.4","week_end":"2023-09-30"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.32","percent_visits_covid":"1.43","percent_visits_influenza":"1.38","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.59","percent_visits_covid":"1.3","percent_visits_influenza":"1.66","percent_visits_rsv":"0.65","week_end":"2023-10-14"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.82","percent_visits_covid":"1.22","percent_visits_influenza":"1.8","percent_visits_rsv":"0.84","week_end":"2023-10-21"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"1.21","percent_visits_influenza":"2.01","percent_visits_rsv":"0.83","week_end":"2023-10-28"}
-,{"county":"Flagler","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.48","percent_visits_covid":"0.91","percent_visits_influenza":"2.75","percent_visits_rsv":"0.86","week_end":"2023-11-04"}
-,{"county":"Flagler","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.03","percent_visits_covid":"0.91","percent_visits_influenza":"3.21","percent_visits_rsv":"0.97","week_end":"2023-11-11"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.43","percent_visits_covid":"1.03","percent_visits_influenza":"3.59","percent_visits_rsv":"0.88","week_end":"2023-11-18"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.18","percent_visits_covid":"1.15","percent_visits_influenza":"4.28","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Flagler","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.22","percent_visits_covid":"1.28","percent_visits_influenza":"4.29","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.01","percent_visits_covid":"0.54","percent_visits_influenza":"1.35","percent_visits_rsv":"0.12","week_end":"2022-10-01"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.02","percent_visits_covid":"0.37","percent_visits_influenza":"1.57","percent_visits_rsv":"0.08","week_end":"2022-10-08"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.71","percent_visits_rsv":"0.1","week_end":"2022-10-15"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.36","percent_visits_influenza":"3.32","percent_visits_rsv":"0.18","week_end":"2022-10-22"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.16","percent_visits_covid":"0.45","percent_visits_influenza":"6.55","percent_visits_rsv":"0.25","week_end":"2022-10-29"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.71","percent_visits_covid":"0.38","percent_visits_influenza":"7.2","percent_visits_rsv":"0.27","week_end":"2022-11-05"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"0.47","percent_visits_influenza":"5.93","percent_visits_rsv":"0.11","week_end":"2022-11-12"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.14","percent_visits_covid":"0.51","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-11-19"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.18","percent_visits_covid":"0.79","percent_visits_influenza":"3.33","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.95","percent_visits_covid":"0.73","percent_visits_influenza":"3.09","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.75","percent_visits_covid":"1.36","percent_visits_influenza":"2.29","percent_visits_rsv":"0.23","week_end":"2022-12-10"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.15","percent_visits_covid":"1.56","percent_visits_influenza":"2.35","percent_visits_rsv":"0.38","week_end":"2022-12-17"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.24","percent_visits_covid":"2.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.33","week_end":"2022-12-24"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.71","percent_visits_influenza":"1.92","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.76","percent_visits_covid":"2.86","percent_visits_influenza":"1.71","percent_visits_rsv":"0.23","week_end":"2023-01-07"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.12","percent_visits_covid":"3.63","percent_visits_influenza":"1.45","percent_visits_rsv":"0.18","week_end":"2023-01-14"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.85","percent_visits_influenza":"1.62","percent_visits_rsv":"0.23","week_end":"2023-01-21"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.63","percent_visits_covid":"3.24","percent_visits_influenza":"1.14","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.71","percent_visits_covid":"2.49","percent_visits_influenza":"1.1","percent_visits_rsv":"0.16","week_end":"2023-02-04"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.04","percent_visits_covid":"2.3","percent_visits_influenza":"1.48","percent_visits_rsv":"0.32","week_end":"2023-02-11"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.0","percent_visits_covid":"2.84","percent_visits_influenza":"1.01","percent_visits_rsv":"0.24","week_end":"2023-02-18"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.83","percent_visits_covid":"1.96","percent_visits_influenza":"0.78","percent_visits_rsv":"0.17","week_end":"2023-02-25"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.96","percent_visits_covid":"1.3","percent_visits_influenza":"0.66","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.37","percent_visits_covid":"1.2","percent_visits_influenza":"0.9","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.2","percent_visits_influenza":"0.71","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.5","percent_visits_covid":"1.53","percent_visits_influenza":"0.87","percent_visits_rsv":"0.17","week_end":"2023-03-25"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.0","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"1.29","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.95","percent_visits_covid":"1.15","percent_visits_influenza":"0.8","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.65","percent_visits_rsv":"0.15","week_end":"2023-04-22"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.92","percent_visits_covid":"0.69","percent_visits_influenza":"1.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.68","percent_visits_covid":"0.84","percent_visits_influenza":"0.82","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.56","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.98","percent_visits_covid":"0.47","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-05-20"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.97","percent_visits_covid":"0.48","percent_visits_influenza":"0.38","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.54","percent_visits_covid":"0.72","percent_visits_influenza":"0.74","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.23","percent_visits_covid":"0.55","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.21","percent_visits_covid":"0.53","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.45","percent_visits_covid":"0.54","percent_visits_influenza":"0.84","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"0.85","percent_visits_influenza":"0.98","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.06","percent_visits_covid":"1.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.09","percent_visits_influenza":"0.85","percent_visits_rsv":"0.16","week_end":"2023-07-15"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.8","percent_visits_covid":"1.87","percent_visits_influenza":"0.81","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.27","percent_visits_covid":"2.44","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.05","percent_visits_covid":"3.19","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-05"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.65","percent_visits_covid":"3.62","percent_visits_influenza":"0.9","percent_visits_rsv":"0.23","week_end":"2023-08-12"}
-,{"county":"Franklin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.81","percent_visits_covid":"3.71","percent_visits_influenza":"1.01","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"5.1","percent_visits_influenza":"1.19","percent_visits_rsv":"0.35","week_end":"2023-08-26"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.8","percent_visits_covid":"4.3","percent_visits_influenza":"1.14","percent_visits_rsv":"0.45","week_end":"2023-09-02"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.11","percent_visits_covid":"1.38","percent_visits_influenza":"0.54","percent_visits_rsv":"0.19","week_end":"2023-04-22"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.08","percent_visits_covid":"3.34","percent_visits_influenza":"1.45","percent_visits_rsv":"0.37","week_end":"2023-09-09"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.03","percent_visits_covid":"2.73","percent_visits_influenza":"1.05","percent_visits_rsv":"0.36","week_end":"2023-09-16"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.94","percent_visits_covid":"1.88","percent_visits_influenza":"1.27","percent_visits_rsv":"0.84","week_end":"2023-09-23"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.46","percent_visits_covid":"1.72","percent_visits_influenza":"1.64","percent_visits_rsv":"1.19","week_end":"2023-09-30"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.44","percent_visits_covid":"0.98","percent_visits_influenza":"1.4","percent_visits_rsv":"1.09","week_end":"2023-10-07"}
-,{"county":"Franklin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.72","percent_visits_influenza":"2.13","percent_visits_rsv":"1.04","week_end":"2023-10-14"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.56","percent_visits_covid":"0.89","percent_visits_influenza":"2.47","percent_visits_rsv":"1.28","week_end":"2023-10-21"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.93","percent_visits_covid":"1.07","percent_visits_influenza":"2.62","percent_visits_rsv":"1.41","week_end":"2023-10-28"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.0","percent_visits_covid":"0.76","percent_visits_influenza":"2.75","percent_visits_rsv":"1.58","week_end":"2023-11-04"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.12","percent_visits_covid":"0.84","percent_visits_influenza":"3.96","percent_visits_rsv":"1.46","week_end":"2023-11-11"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.87","percent_visits_covid":"0.87","percent_visits_influenza":"4.92","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.97","percent_visits_covid":"0.95","percent_visits_influenza":"4.34","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Franklin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.93","percent_visits_covid":"0.66","percent_visits_influenza":"4.54","percent_visits_rsv":"0.88","week_end":"2023-12-02"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.01","percent_visits_covid":"0.54","percent_visits_influenza":"1.35","percent_visits_rsv":"0.12","week_end":"2022-10-01"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.02","percent_visits_covid":"0.37","percent_visits_influenza":"1.57","percent_visits_rsv":"0.08","week_end":"2022-10-08"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.71","percent_visits_rsv":"0.1","week_end":"2022-10-15"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.36","percent_visits_influenza":"3.32","percent_visits_rsv":"0.18","week_end":"2022-10-22"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.16","percent_visits_covid":"0.45","percent_visits_influenza":"6.55","percent_visits_rsv":"0.25","week_end":"2022-10-29"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.71","percent_visits_covid":"0.38","percent_visits_influenza":"7.2","percent_visits_rsv":"0.27","week_end":"2022-11-05"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"0.47","percent_visits_influenza":"5.93","percent_visits_rsv":"0.11","week_end":"2022-11-12"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.14","percent_visits_covid":"0.51","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-11-19"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.18","percent_visits_covid":"0.79","percent_visits_influenza":"3.33","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.95","percent_visits_covid":"0.73","percent_visits_influenza":"3.09","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.75","percent_visits_covid":"1.36","percent_visits_influenza":"2.29","percent_visits_rsv":"0.23","week_end":"2022-12-10"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.15","percent_visits_covid":"1.56","percent_visits_influenza":"2.35","percent_visits_rsv":"0.38","week_end":"2022-12-17"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.24","percent_visits_covid":"2.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.33","week_end":"2022-12-24"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.71","percent_visits_influenza":"1.92","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.76","percent_visits_covid":"2.86","percent_visits_influenza":"1.71","percent_visits_rsv":"0.23","week_end":"2023-01-07"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.12","percent_visits_covid":"3.63","percent_visits_influenza":"1.45","percent_visits_rsv":"0.18","week_end":"2023-01-14"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.85","percent_visits_influenza":"1.62","percent_visits_rsv":"0.23","week_end":"2023-01-21"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.63","percent_visits_covid":"3.24","percent_visits_influenza":"1.14","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.71","percent_visits_covid":"2.49","percent_visits_influenza":"1.1","percent_visits_rsv":"0.16","week_end":"2023-02-04"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.04","percent_visits_covid":"2.3","percent_visits_influenza":"1.48","percent_visits_rsv":"0.32","week_end":"2023-02-11"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.41","percent_visits_covid":"2.75","percent_visits_influenza":"0.54","percent_visits_rsv":"0.12","week_end":"2023-02-04"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.0","percent_visits_covid":"2.84","percent_visits_influenza":"1.01","percent_visits_rsv":"0.24","week_end":"2023-02-18"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.83","percent_visits_covid":"1.96","percent_visits_influenza":"0.78","percent_visits_rsv":"0.17","week_end":"2023-02-25"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.96","percent_visits_covid":"1.3","percent_visits_influenza":"0.66","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.37","percent_visits_covid":"1.2","percent_visits_influenza":"0.9","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.2","percent_visits_influenza":"0.71","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.5","percent_visits_covid":"1.53","percent_visits_influenza":"0.87","percent_visits_rsv":"0.17","week_end":"2023-03-25"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.0","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"1.29","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.95","percent_visits_covid":"1.15","percent_visits_influenza":"0.8","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.65","percent_visits_rsv":"0.15","week_end":"2023-04-22"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.92","percent_visits_covid":"0.69","percent_visits_influenza":"1.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.68","percent_visits_covid":"0.84","percent_visits_influenza":"0.82","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.56","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.98","percent_visits_covid":"0.47","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-05-20"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.97","percent_visits_covid":"0.48","percent_visits_influenza":"0.38","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.54","percent_visits_covid":"0.72","percent_visits_influenza":"0.74","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.23","percent_visits_covid":"0.55","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.21","percent_visits_covid":"0.53","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.45","percent_visits_covid":"0.54","percent_visits_influenza":"0.84","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"0.85","percent_visits_influenza":"0.98","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.06","percent_visits_covid":"1.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.09","percent_visits_influenza":"0.85","percent_visits_rsv":"0.16","week_end":"2023-07-15"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.8","percent_visits_covid":"1.87","percent_visits_influenza":"0.81","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.27","percent_visits_covid":"2.44","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.05","percent_visits_covid":"3.19","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-05"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.65","percent_visits_covid":"3.62","percent_visits_influenza":"0.9","percent_visits_rsv":"0.23","week_end":"2023-08-12"}
-,{"county":"Gadsden","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.81","percent_visits_covid":"3.71","percent_visits_influenza":"1.01","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"5.1","percent_visits_influenza":"1.19","percent_visits_rsv":"0.35","week_end":"2023-08-26"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.8","percent_visits_covid":"4.3","percent_visits_influenza":"1.14","percent_visits_rsv":"0.45","week_end":"2023-09-02"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.08","percent_visits_covid":"3.34","percent_visits_influenza":"1.45","percent_visits_rsv":"0.37","week_end":"2023-09-09"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.03","percent_visits_covid":"2.73","percent_visits_influenza":"1.05","percent_visits_rsv":"0.36","week_end":"2023-09-16"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.94","percent_visits_covid":"1.88","percent_visits_influenza":"1.27","percent_visits_rsv":"0.84","week_end":"2023-09-23"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.46","percent_visits_covid":"1.72","percent_visits_influenza":"1.64","percent_visits_rsv":"1.19","week_end":"2023-09-30"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.97","percent_visits_covid":"1.37","percent_visits_influenza":"0.48","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.44","percent_visits_covid":"0.98","percent_visits_influenza":"1.4","percent_visits_rsv":"1.09","week_end":"2023-10-07"}
-,{"county":"Gadsden","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.72","percent_visits_influenza":"2.13","percent_visits_rsv":"1.04","week_end":"2023-10-14"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.56","percent_visits_covid":"0.89","percent_visits_influenza":"2.47","percent_visits_rsv":"1.28","week_end":"2023-10-21"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.93","percent_visits_covid":"1.07","percent_visits_influenza":"2.62","percent_visits_rsv":"1.41","week_end":"2023-10-28"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.0","percent_visits_covid":"0.76","percent_visits_influenza":"2.75","percent_visits_rsv":"1.58","week_end":"2023-11-04"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.12","percent_visits_covid":"0.84","percent_visits_influenza":"3.96","percent_visits_rsv":"1.46","week_end":"2023-11-11"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.87","percent_visits_covid":"0.87","percent_visits_influenza":"4.92","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.97","percent_visits_covid":"0.95","percent_visits_influenza":"4.34","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Gadsden","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.93","percent_visits_covid":"0.66","percent_visits_influenza":"4.54","percent_visits_rsv":"0.88","week_end":"2023-12-02"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Gilchrist","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Gilchrist","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Gilchrist","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.31","percent_visits_covid":"1.88","percent_visits_influenza":"0.69","percent_visits_rsv":"0.79","week_end":"2022-10-01"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.56","percent_visits_covid":"1.24","percent_visits_influenza":"0.62","percent_visits_rsv":"0.75","week_end":"2022-10-08"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.84","percent_visits_covid":"1.61","percent_visits_influenza":"0.59","percent_visits_rsv":"0.64","week_end":"2022-10-15"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.87","percent_visits_covid":"1.84","percent_visits_influenza":"0.65","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.35","percent_visits_covid":"1.75","percent_visits_influenza":"1.18","percent_visits_rsv":"0.45","week_end":"2022-10-29"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.95","percent_visits_covid":"1.88","percent_visits_influenza":"2.4","percent_visits_rsv":"0.68","week_end":"2022-11-05"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.32","percent_visits_rsv":"0.57","week_end":"2022-11-12"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.74","percent_visits_covid":"1.9","percent_visits_influenza":"4.27","percent_visits_rsv":"0.67","week_end":"2022-11-19"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.83","percent_visits_covid":"2.25","percent_visits_influenza":"4.9","percent_visits_rsv":"0.8","week_end":"2022-11-26"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.19","percent_visits_covid":"2.42","percent_visits_influenza":"4.35","percent_visits_rsv":"0.58","week_end":"2022-12-03"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.4","percent_visits_covid":"2.71","percent_visits_influenza":"4.31","percent_visits_rsv":"0.54","week_end":"2022-12-10"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"9.12","percent_visits_covid":"2.99","percent_visits_influenza":"5.63","percent_visits_rsv":"0.66","week_end":"2022-12-17"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"8.95","percent_visits_covid":"3.23","percent_visits_influenza":"5.21","percent_visits_rsv":"0.63","week_end":"2022-12-24"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"9.68","percent_visits_covid":"4.67","percent_visits_influenza":"4.64","percent_visits_rsv":"0.61","week_end":"2022-12-31"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.34","percent_visits_covid":"3.83","percent_visits_influenza":"3.09","percent_visits_rsv":"0.55","week_end":"2023-01-07"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.37","percent_visits_covid":"3.22","percent_visits_influenza":"1.75","percent_visits_rsv":"0.48","week_end":"2023-01-14"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.68","percent_visits_covid":"2.81","percent_visits_influenza":"1.5","percent_visits_rsv":"0.49","week_end":"2023-01-21"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.34","percent_visits_covid":"2.69","percent_visits_influenza":"1.37","percent_visits_rsv":"0.31","week_end":"2023-01-28"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.63","percent_visits_covid":"2.31","percent_visits_influenza":"1.1","percent_visits_rsv":"0.26","week_end":"2023-02-04"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.24","percent_visits_covid":"2.14","percent_visits_influenza":"0.87","percent_visits_rsv":"0.3","week_end":"2023-02-11"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.2","percent_visits_covid":"2.08","percent_visits_influenza":"0.89","percent_visits_rsv":"0.27","week_end":"2023-02-18"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.3","percent_visits_covid":"2.08","percent_visits_influenza":"0.8","percent_visits_rsv":"0.43","week_end":"2023-02-25"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.06","percent_visits_covid":"2.01","percent_visits_influenza":"0.85","percent_visits_rsv":"0.25","week_end":"2023-03-04"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.84","percent_visits_covid":"1.7","percent_visits_influenza":"0.9","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.79","percent_visits_covid":"1.79","percent_visits_influenza":"0.8","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.62","percent_visits_covid":"1.76","percent_visits_influenza":"0.7","percent_visits_rsv":"0.2","week_end":"2023-03-25"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.82","percent_visits_covid":"1.88","percent_visits_influenza":"0.73","percent_visits_rsv":"0.26","week_end":"2023-04-01"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.34","percent_visits_covid":"1.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.16","week_end":"2023-04-08"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.4","percent_visits_covid":"1.6","percent_visits_influenza":"0.7","percent_visits_rsv":"0.12","week_end":"2023-04-15"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.81","percent_visits_covid":"1.09","percent_visits_influenza":"0.6","percent_visits_rsv":"0.14","week_end":"2023-05-06"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.89","percent_visits_covid":"1.03","percent_visits_influenza":"0.69","percent_visits_rsv":"0.19","week_end":"2023-05-13"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.97","percent_visits_covid":"1.04","percent_visits_influenza":"0.79","percent_visits_rsv":"0.16","week_end":"2023-05-20"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.45","percent_visits_covid":"1.15","percent_visits_influenza":"1.09","percent_visits_rsv":"0.24","week_end":"2023-05-27"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.58","percent_visits_covid":"1.25","percent_visits_influenza":"1.17","percent_visits_rsv":"0.16","week_end":"2023-06-03"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.39","percent_visits_covid":"1.27","percent_visits_influenza":"1.01","percent_visits_rsv":"0.15","week_end":"2023-06-10"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.68","percent_visits_covid":"1.51","percent_visits_influenza":"0.95","percent_visits_rsv":"0.26","week_end":"2023-06-17"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.46","percent_visits_covid":"1.37","percent_visits_influenza":"0.82","percent_visits_rsv":"0.3","week_end":"2023-06-24"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.48","percent_visits_covid":"1.47","percent_visits_influenza":"0.84","percent_visits_rsv":"0.2","week_end":"2023-07-01"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.88","percent_visits_covid":"1.8","percent_visits_influenza":"0.89","percent_visits_rsv":"0.21","week_end":"2023-07-08"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.01","percent_visits_covid":"2.29","percent_visits_influenza":"0.54","percent_visits_rsv":"0.19","week_end":"2023-07-15"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.3","percent_visits_covid":"2.66","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-07-22"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.03","percent_visits_covid":"3.2","percent_visits_influenza":"0.51","percent_visits_rsv":"0.38","week_end":"2023-07-29"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.78","percent_visits_covid":"3.97","percent_visits_influenza":"0.4","percent_visits_rsv":"0.43","week_end":"2023-08-05"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.55","percent_visits_covid":"3.82","percent_visits_influenza":"0.45","percent_visits_rsv":"0.35","week_end":"2023-08-12"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.21","percent_visits_covid":"4.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.36","week_end":"2023-08-19"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.84","percent_visits_covid":"5.66","percent_visits_influenza":"0.78","percent_visits_rsv":"0.46","week_end":"2023-08-26"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.32","percent_visits_covid":"4.25","percent_visits_influenza":"0.64","percent_visits_rsv":"0.49","week_end":"2023-09-02"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.21","percent_visits_covid":"3.24","percent_visits_influenza":"0.45","percent_visits_rsv":"0.57","week_end":"2023-09-09"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.36","percent_visits_covid":"2.15","percent_visits_influenza":"0.76","percent_visits_rsv":"0.48","week_end":"2023-09-16"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.62","percent_visits_covid":"2.17","percent_visits_influenza":"0.85","percent_visits_rsv":"0.66","week_end":"2023-09-23"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.98","percent_visits_covid":"1.94","percent_visits_influenza":"1.05","percent_visits_rsv":"1.08","week_end":"2023-09-30"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.98","percent_visits_covid":"1.59","percent_visits_influenza":"1.3","percent_visits_rsv":"1.17","week_end":"2023-10-07"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.44","percent_visits_covid":"1.41","percent_visits_influenza":"1.85","percent_visits_rsv":"1.21","week_end":"2023-10-14"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.35","percent_visits_covid":"1.36","percent_visits_influenza":"2.17","percent_visits_rsv":"0.9","week_end":"2023-10-21"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.74","percent_visits_covid":"1.33","percent_visits_influenza":"2.67","percent_visits_rsv":"0.82","week_end":"2023-10-28"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.81","percent_visits_covid":"0.89","percent_visits_influenza":"3.2","percent_visits_rsv":"0.77","week_end":"2023-11-04"}
-,{"county":"Glades","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.54","percent_visits_covid":"0.84","percent_visits_influenza":"4.06","percent_visits_rsv":"0.72","week_end":"2023-11-11"}
-,{"county":"Glades","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.22","percent_visits_covid":"1.05","percent_visits_influenza":"4.31","percent_visits_rsv":"0.91","week_end":"2023-11-18"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.92","percent_visits_covid":"1.29","percent_visits_influenza":"3.87","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Glades","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.73","percent_visits_covid":"1.05","percent_visits_influenza":"3.24","percent_visits_rsv":"0.51","week_end":"2023-12-02"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.22","percent_visits_covid":"0.96","percent_visits_influenza":"2.98","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.17","percent_visits_covid":"0.89","percent_visits_influenza":"4.1","percent_visits_rsv":"0.18","week_end":"2022-10-08"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.74","percent_visits_covid":"0.7","percent_visits_influenza":"3.73","percent_visits_rsv":"0.31","week_end":"2022-10-15"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.39","percent_visits_covid":"0.96","percent_visits_influenza":"5.24","percent_visits_rsv":"0.24","week_end":"2022-10-22"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.68","percent_visits_covid":"0.78","percent_visits_influenza":"5.56","percent_visits_rsv":"0.39","week_end":"2022-10-29"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.13","percent_visits_covid":"0.88","percent_visits_influenza":"6.85","percent_visits_rsv":"0.43","week_end":"2022-11-05"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.74","percent_visits_covid":"0.76","percent_visits_influenza":"6.65","percent_visits_rsv":"0.36","week_end":"2022-11-12"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.07","percent_visits_covid":"0.56","percent_visits_influenza":"5.1","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.62","percent_visits_covid":"0.72","percent_visits_influenza":"6.26","percent_visits_rsv":"0.77","week_end":"2022-11-26"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.54","percent_visits_covid":"0.74","percent_visits_influenza":"5.27","percent_visits_rsv":"0.55","week_end":"2022-12-03"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.5","percent_visits_covid":"1.36","percent_visits_influenza":"3.77","percent_visits_rsv":"0.42","week_end":"2022-12-10"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.25","percent_visits_covid":"1.63","percent_visits_influenza":"3.05","percent_visits_rsv":"0.59","week_end":"2022-12-17"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.25","percent_visits_covid":"2.17","percent_visits_influenza":"3.61","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.73","percent_visits_covid":"3.86","percent_visits_influenza":"3.52","percent_visits_rsv":"0.42","week_end":"2022-12-31"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.17","percent_visits_covid":"3.23","percent_visits_influenza":"2.73","percent_visits_rsv":"0.4","week_end":"2023-01-07"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.01","percent_visits_covid":"2.54","percent_visits_influenza":"2.04","percent_visits_rsv":"0.42","week_end":"2023-01-14"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.87","percent_visits_covid":"2.43","percent_visits_influenza":"2.14","percent_visits_rsv":"0.35","week_end":"2023-01-21"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.73","percent_visits_covid":"1.76","percent_visits_influenza":"1.7","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"2.51","percent_visits_influenza":"1.56","percent_visits_rsv":"0.13","week_end":"2023-02-04"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.14","percent_visits_covid":"2.23","percent_visits_influenza":"1.64","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.69","percent_visits_covid":"1.66","percent_visits_influenza":"0.92","percent_visits_rsv":"0.18","week_end":"2023-02-18"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.76","percent_visits_covid":"1.69","percent_visits_influenza":"0.91","percent_visits_rsv":"0.2","week_end":"2023-02-25"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.28","percent_visits_influenza":"0.77","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.73","percent_visits_covid":"0.93","percent_visits_influenza":"0.6","percent_visits_rsv":"0.23","week_end":"2023-03-11"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.54","percent_visits_covid":"0.92","percent_visits_influenza":"0.59","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.99","percent_visits_covid":"1.4","percent_visits_influenza":"0.52","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.6","percent_visits_covid":"1.11","percent_visits_influenza":"0.42","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.37","percent_visits_covid":"0.92","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.43","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.06","percent_visits_covid":"0.82","percent_visits_influenza":"0.19","percent_visits_rsv":"0.07","week_end":"2023-04-22"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.98","percent_visits_covid":"0.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.93","percent_visits_covid":"0.49","percent_visits_influenza":"0.34","percent_visits_rsv":"0.15","week_end":"2023-05-06"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.78","percent_visits_covid":"0.44","percent_visits_influenza":"0.29","percent_visits_rsv":"0.07","week_end":"2023-05-13"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.52","percent_visits_covid":"0.35","percent_visits_influenza":"0.17","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.08","percent_visits_covid":"0.59","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.09","percent_visits_covid":"0.43","percent_visits_influenza":"0.63","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.07","percent_visits_covid":"0.5","percent_visits_influenza":"0.47","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.86","percent_visits_covid":"0.39","percent_visits_influenza":"0.47","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.35","percent_visits_influenza":"0.3","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.96","percent_visits_covid":"0.75","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-07-01"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.41","percent_visits_influenza":"0.12","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.12","percent_visits_covid":"0.9","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.65","percent_visits_covid":"1.12","percent_visits_influenza":"0.44","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.55","percent_visits_covid":"1.25","percent_visits_influenza":"0.22","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.37","percent_visits_covid":"1.83","percent_visits_influenza":"0.39","percent_visits_rsv":"0.24","week_end":"2023-08-05"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.12","percent_visits_covid":"2.42","percent_visits_influenza":"0.45","percent_visits_rsv":"0.28","week_end":"2023-08-12"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"3.5","percent_visits_influenza":"0.39","percent_visits_rsv":"0.35","week_end":"2023-08-19"}
-,{"county":"Gulf","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.48","percent_visits_covid":"4.88","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-08-26"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.52","percent_visits_covid":"4.84","percent_visits_influenza":"0.26","percent_visits_rsv":"0.42","week_end":"2023-09-02"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.46","percent_visits_covid":"3.78","percent_visits_influenza":"0.45","percent_visits_rsv":"0.25","week_end":"2023-09-09"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.31","percent_visits_covid":"2.37","percent_visits_influenza":"0.73","percent_visits_rsv":"0.25","week_end":"2023-09-16"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.57","percent_visits_covid":"1.87","percent_visits_influenza":"1.2","percent_visits_rsv":"0.51","week_end":"2023-09-23"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.95","percent_visits_covid":"2.04","percent_visits_influenza":"2.25","percent_visits_rsv":"0.68","week_end":"2023-09-30"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.33","percent_visits_covid":"1.37","percent_visits_influenza":"4.44","percent_visits_rsv":"0.69","week_end":"2023-10-07"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.91","percent_visits_covid":"1.65","percent_visits_influenza":"5.67","percent_visits_rsv":"0.69","week_end":"2023-10-14"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.18","percent_visits_covid":"1.17","percent_visits_influenza":"6.4","percent_visits_rsv":"0.79","week_end":"2023-10-21"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.58","percent_visits_covid":"0.8","percent_visits_influenza":"7.2","percent_visits_rsv":"0.69","week_end":"2023-10-28"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.51","percent_visits_covid":"0.97","percent_visits_influenza":"7.98","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"Gulf","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"12.22","percent_visits_covid":"0.91","percent_visits_influenza":"10.69","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"10.13","percent_visits_covid":"0.53","percent_visits_influenza":"8.83","percent_visits_rsv":"0.84","week_end":"2023-11-18"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.81","percent_visits_covid":"0.77","percent_visits_influenza":"8.41","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Gulf","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.5","percent_visits_covid":"0.75","percent_visits_influenza":"6.27","percent_visits_rsv":"0.56","week_end":"2023-12-02"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Hamilton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Hamilton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Hamilton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.41","percent_visits_covid":"1.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.98","week_end":"2022-10-01"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.17","percent_visits_covid":"1.63","percent_visits_influenza":"0.57","percent_visits_rsv":"1.04","week_end":"2022-10-08"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.7","percent_visits_covid":"1.32","percent_visits_influenza":"0.58","percent_visits_rsv":"0.83","week_end":"2022-10-15"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.02","percent_visits_covid":"1.37","percent_visits_influenza":"0.89","percent_visits_rsv":"0.83","week_end":"2022-10-22"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.09","percent_visits_covid":"1.77","percent_visits_influenza":"1.48","percent_visits_rsv":"0.91","week_end":"2022-10-29"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.14","percent_visits_covid":"1.44","percent_visits_influenza":"2.68","percent_visits_rsv":"1.06","week_end":"2022-11-05"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.56","percent_visits_covid":"1.41","percent_visits_influenza":"3.28","percent_visits_rsv":"0.93","week_end":"2022-11-12"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.6","percent_visits_covid":"1.53","percent_visits_influenza":"3.03","percent_visits_rsv":"1.08","week_end":"2022-11-19"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.08","percent_visits_covid":"2.21","percent_visits_influenza":"5.06","percent_visits_rsv":"0.87","week_end":"2022-11-26"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.16","percent_visits_covid":"2.22","percent_visits_influenza":"4.15","percent_visits_rsv":"0.86","week_end":"2022-12-03"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.78","percent_visits_covid":"2.4","percent_visits_influenza":"3.82","percent_visits_rsv":"0.62","week_end":"2022-12-10"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.04","percent_visits_covid":"2.66","percent_visits_influenza":"4.99","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.87","percent_visits_covid":"3.18","percent_visits_influenza":"5.26","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.56","percent_visits_covid":"4.07","percent_visits_influenza":"5.25","percent_visits_rsv":"0.41","week_end":"2022-12-31"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.46","percent_visits_covid":"3.64","percent_visits_influenza":"3.46","percent_visits_rsv":"0.45","week_end":"2023-01-07"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.69","percent_visits_covid":"3.04","percent_visits_influenza":"2.48","percent_visits_rsv":"0.26","week_end":"2023-01-14"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.99","percent_visits_covid":"2.48","percent_visits_influenza":"1.35","percent_visits_rsv":"0.2","week_end":"2023-01-21"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.5","percent_visits_covid":"2.76","percent_visits_influenza":"1.64","percent_visits_rsv":"0.13","week_end":"2023-01-28"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.73","percent_visits_covid":"2.35","percent_visits_influenza":"1.25","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.89","percent_visits_covid":"2.07","percent_visits_influenza":"0.73","percent_visits_rsv":"0.09","week_end":"2023-02-11"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.91","percent_visits_covid":"2.02","percent_visits_influenza":"0.77","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.77","percent_visits_covid":"2.08","percent_visits_influenza":"0.62","percent_visits_rsv":"0.12","week_end":"2023-02-25"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.45","percent_visits_covid":"1.71","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.28","percent_visits_covid":"1.65","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.22","percent_visits_covid":"1.55","percent_visits_influenza":"0.65","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.12","percent_visits_covid":"1.5","percent_visits_influenza":"0.53","percent_visits_rsv":"0.1","week_end":"2023-03-25"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.16","percent_visits_covid":"1.46","percent_visits_influenza":"0.62","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.0","percent_visits_covid":"1.51","percent_visits_influenza":"0.48","percent_visits_rsv":"0.03","week_end":"2023-04-08"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.65","percent_visits_covid":"1.14","percent_visits_influenza":"0.46","percent_visits_rsv":"0.05","week_end":"2023-04-15"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.46","percent_visits_covid":"1.14","percent_visits_influenza":"0.27","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.62","percent_visits_covid":"1.12","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-29"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.55","percent_visits_rsv":"0.09","week_end":"2023-05-06"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.58","percent_visits_covid":"0.91","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-05-13"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.91","percent_visits_covid":"1.04","percent_visits_influenza":"0.85","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.82","percent_visits_covid":"0.96","percent_visits_influenza":"0.87","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.31","percent_visits_covid":"1.09","percent_visits_influenza":"1.21","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.35","percent_visits_covid":"1.19","percent_visits_influenza":"1.18","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.09","percent_visits_covid":"1.09","percent_visits_influenza":"0.95","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.71","percent_visits_covid":"1.06","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-24"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.1","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.17","week_end":"2023-07-01"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.32","percent_visits_covid":"1.57","percent_visits_influenza":"0.69","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.73","percent_visits_covid":"1.89","percent_visits_influenza":"0.75","percent_visits_rsv":"0.13","week_end":"2023-07-15"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.75","percent_visits_covid":"2.03","percent_visits_influenza":"0.57","percent_visits_rsv":"0.17","week_end":"2023-07-22"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.43","percent_visits_covid":"2.72","percent_visits_influenza":"0.59","percent_visits_rsv":"0.16","week_end":"2023-07-29"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.15","percent_visits_covid":"3.34","percent_visits_influenza":"0.71","percent_visits_rsv":"0.2","week_end":"2023-08-05"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.07","percent_visits_covid":"4.36","percent_visits_influenza":"0.58","percent_visits_rsv":"0.22","week_end":"2023-08-12"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.08","percent_visits_covid":"4.92","percent_visits_influenza":"0.97","percent_visits_rsv":"0.28","week_end":"2023-08-19"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.33","percent_visits_covid":"6.11","percent_visits_influenza":"1.03","percent_visits_rsv":"0.34","week_end":"2023-08-26"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.59","percent_visits_covid":"5.13","percent_visits_influenza":"1.11","percent_visits_rsv":"0.47","week_end":"2023-09-02"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.39","percent_visits_covid":"4.05","percent_visits_influenza":"1.06","percent_visits_rsv":"0.36","week_end":"2023-09-09"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.43","percent_visits_covid":"2.64","percent_visits_influenza":"1.26","percent_visits_rsv":"0.67","week_end":"2023-09-16"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.16","percent_visits_covid":"1.66","percent_visits_influenza":"1.84","percent_visits_rsv":"0.72","week_end":"2023-09-23"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.59","percent_visits_covid":"1.62","percent_visits_influenza":"2.22","percent_visits_rsv":"0.83","week_end":"2023-09-30"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.43","percent_visits_covid":"1.15","percent_visits_influenza":"2.65","percent_visits_rsv":"0.74","week_end":"2023-10-07"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.79","percent_visits_covid":"1.07","percent_visits_influenza":"3.78","percent_visits_rsv":"1.01","week_end":"2023-10-14"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.63","percent_visits_covid":"1.2","percent_visits_influenza":"4.3","percent_visits_rsv":"1.24","week_end":"2023-10-21"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.82","percent_visits_covid":"1.06","percent_visits_influenza":"5.58","percent_visits_rsv":"1.26","week_end":"2023-10-28"}
-,{"county":"Hardee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.57","percent_visits_covid":"0.82","percent_visits_influenza":"7.49","percent_visits_rsv":"1.39","week_end":"2023-11-04"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.05","percent_visits_covid":"0.8","percent_visits_influenza":"6.7","percent_visits_rsv":"1.66","week_end":"2023-11-11"}
-,{"county":"Hardee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.29","percent_visits_covid":"0.83","percent_visits_influenza":"7.3","percent_visits_rsv":"1.27","week_end":"2023-11-18"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.6","percent_visits_covid":"0.97","percent_visits_influenza":"6.79","percent_visits_rsv":"0.88","week_end":"2023-11-25"}
-,{"county":"Hardee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.4","percent_visits_covid":"1.02","percent_visits_influenza":"4.77","percent_visits_rsv":"0.73","week_end":"2023-12-02"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.31","percent_visits_covid":"1.88","percent_visits_influenza":"0.69","percent_visits_rsv":"0.79","week_end":"2022-10-01"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.56","percent_visits_covid":"1.24","percent_visits_influenza":"0.62","percent_visits_rsv":"0.75","week_end":"2022-10-08"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.84","percent_visits_covid":"1.61","percent_visits_influenza":"0.59","percent_visits_rsv":"0.64","week_end":"2022-10-15"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.87","percent_visits_covid":"1.84","percent_visits_influenza":"0.65","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.35","percent_visits_covid":"1.75","percent_visits_influenza":"1.18","percent_visits_rsv":"0.45","week_end":"2022-10-29"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.95","percent_visits_covid":"1.88","percent_visits_influenza":"2.4","percent_visits_rsv":"0.68","week_end":"2022-11-05"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.32","percent_visits_rsv":"0.57","week_end":"2022-11-12"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.74","percent_visits_covid":"1.9","percent_visits_influenza":"4.27","percent_visits_rsv":"0.67","week_end":"2022-11-19"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.83","percent_visits_covid":"2.25","percent_visits_influenza":"4.9","percent_visits_rsv":"0.8","week_end":"2022-11-26"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.19","percent_visits_covid":"2.42","percent_visits_influenza":"4.35","percent_visits_rsv":"0.58","week_end":"2022-12-03"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.4","percent_visits_covid":"2.71","percent_visits_influenza":"4.31","percent_visits_rsv":"0.54","week_end":"2022-12-10"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"9.12","percent_visits_covid":"2.99","percent_visits_influenza":"5.63","percent_visits_rsv":"0.66","week_end":"2022-12-17"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"8.95","percent_visits_covid":"3.23","percent_visits_influenza":"5.21","percent_visits_rsv":"0.63","week_end":"2022-12-24"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"9.68","percent_visits_covid":"4.67","percent_visits_influenza":"4.64","percent_visits_rsv":"0.61","week_end":"2022-12-31"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.34","percent_visits_covid":"3.83","percent_visits_influenza":"3.09","percent_visits_rsv":"0.55","week_end":"2023-01-07"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.37","percent_visits_covid":"3.22","percent_visits_influenza":"1.75","percent_visits_rsv":"0.48","week_end":"2023-01-14"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.68","percent_visits_covid":"2.81","percent_visits_influenza":"1.5","percent_visits_rsv":"0.49","week_end":"2023-01-21"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.34","percent_visits_covid":"2.69","percent_visits_influenza":"1.37","percent_visits_rsv":"0.31","week_end":"2023-01-28"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.63","percent_visits_covid":"2.31","percent_visits_influenza":"1.1","percent_visits_rsv":"0.26","week_end":"2023-02-04"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.24","percent_visits_covid":"2.14","percent_visits_influenza":"0.87","percent_visits_rsv":"0.3","week_end":"2023-02-11"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.2","percent_visits_covid":"2.08","percent_visits_influenza":"0.89","percent_visits_rsv":"0.27","week_end":"2023-02-18"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.3","percent_visits_covid":"2.08","percent_visits_influenza":"0.8","percent_visits_rsv":"0.43","week_end":"2023-02-25"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.06","percent_visits_covid":"2.01","percent_visits_influenza":"0.85","percent_visits_rsv":"0.25","week_end":"2023-03-04"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.84","percent_visits_covid":"1.7","percent_visits_influenza":"0.9","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.79","percent_visits_covid":"1.79","percent_visits_influenza":"0.8","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.62","percent_visits_covid":"1.76","percent_visits_influenza":"0.7","percent_visits_rsv":"0.2","week_end":"2023-03-25"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.82","percent_visits_covid":"1.88","percent_visits_influenza":"0.73","percent_visits_rsv":"0.26","week_end":"2023-04-01"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.34","percent_visits_covid":"1.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.16","week_end":"2023-04-08"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.4","percent_visits_covid":"1.6","percent_visits_influenza":"0.7","percent_visits_rsv":"0.12","week_end":"2023-04-15"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.11","percent_visits_covid":"1.38","percent_visits_influenza":"0.54","percent_visits_rsv":"0.19","week_end":"2023-04-22"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.97","percent_visits_covid":"1.37","percent_visits_influenza":"0.48","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.81","percent_visits_covid":"1.09","percent_visits_influenza":"0.6","percent_visits_rsv":"0.14","week_end":"2023-05-06"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.89","percent_visits_covid":"1.03","percent_visits_influenza":"0.69","percent_visits_rsv":"0.19","week_end":"2023-05-13"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.97","percent_visits_covid":"1.04","percent_visits_influenza":"0.79","percent_visits_rsv":"0.16","week_end":"2023-05-20"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.45","percent_visits_covid":"1.15","percent_visits_influenza":"1.09","percent_visits_rsv":"0.24","week_end":"2023-05-27"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.58","percent_visits_covid":"1.25","percent_visits_influenza":"1.17","percent_visits_rsv":"0.16","week_end":"2023-06-03"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.39","percent_visits_covid":"1.27","percent_visits_influenza":"1.01","percent_visits_rsv":"0.15","week_end":"2023-06-10"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.68","percent_visits_covid":"1.51","percent_visits_influenza":"0.95","percent_visits_rsv":"0.26","week_end":"2023-06-17"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.46","percent_visits_covid":"1.37","percent_visits_influenza":"0.82","percent_visits_rsv":"0.3","week_end":"2023-06-24"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.48","percent_visits_covid":"1.47","percent_visits_influenza":"0.84","percent_visits_rsv":"0.2","week_end":"2023-07-01"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.88","percent_visits_covid":"1.8","percent_visits_influenza":"0.89","percent_visits_rsv":"0.21","week_end":"2023-07-08"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.01","percent_visits_covid":"2.29","percent_visits_influenza":"0.54","percent_visits_rsv":"0.19","week_end":"2023-07-15"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.3","percent_visits_covid":"2.66","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-07-22"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.03","percent_visits_covid":"3.2","percent_visits_influenza":"0.51","percent_visits_rsv":"0.38","week_end":"2023-07-29"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.78","percent_visits_covid":"3.97","percent_visits_influenza":"0.4","percent_visits_rsv":"0.43","week_end":"2023-08-05"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.55","percent_visits_covid":"3.82","percent_visits_influenza":"0.45","percent_visits_rsv":"0.35","week_end":"2023-08-12"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.21","percent_visits_covid":"4.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.36","week_end":"2023-08-19"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.84","percent_visits_covid":"5.66","percent_visits_influenza":"0.78","percent_visits_rsv":"0.46","week_end":"2023-08-26"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.32","percent_visits_covid":"4.25","percent_visits_influenza":"0.64","percent_visits_rsv":"0.49","week_end":"2023-09-02"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.21","percent_visits_covid":"3.24","percent_visits_influenza":"0.45","percent_visits_rsv":"0.57","week_end":"2023-09-09"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.36","percent_visits_covid":"2.15","percent_visits_influenza":"0.76","percent_visits_rsv":"0.48","week_end":"2023-09-16"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.62","percent_visits_covid":"2.17","percent_visits_influenza":"0.85","percent_visits_rsv":"0.66","week_end":"2023-09-23"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.98","percent_visits_covid":"1.94","percent_visits_influenza":"1.05","percent_visits_rsv":"1.08","week_end":"2023-09-30"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.98","percent_visits_covid":"1.59","percent_visits_influenza":"1.3","percent_visits_rsv":"1.17","week_end":"2023-10-07"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.44","percent_visits_covid":"1.41","percent_visits_influenza":"1.85","percent_visits_rsv":"1.21","week_end":"2023-10-14"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.35","percent_visits_covid":"1.36","percent_visits_influenza":"2.17","percent_visits_rsv":"0.9","week_end":"2023-10-21"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.74","percent_visits_covid":"1.33","percent_visits_influenza":"2.67","percent_visits_rsv":"0.82","week_end":"2023-10-28"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.81","percent_visits_covid":"0.89","percent_visits_influenza":"3.2","percent_visits_rsv":"0.77","week_end":"2023-11-04"}
-,{"county":"Hendry","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.54","percent_visits_covid":"0.84","percent_visits_influenza":"4.06","percent_visits_rsv":"0.72","week_end":"2023-11-11"}
-,{"county":"Hendry","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.22","percent_visits_covid":"1.05","percent_visits_influenza":"4.31","percent_visits_rsv":"0.91","week_end":"2023-11-18"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.92","percent_visits_covid":"1.29","percent_visits_influenza":"3.87","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Hendry","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.73","percent_visits_covid":"1.05","percent_visits_influenza":"3.24","percent_visits_rsv":"0.51","week_end":"2023-12-02"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.75","percent_visits_covid":"1.64","percent_visits_influenza":"0.41","percent_visits_rsv":"0.72","week_end":"2022-10-01"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.03","percent_visits_covid":"1.2","percent_visits_influenza":"0.3","percent_visits_rsv":"0.55","week_end":"2022-10-08"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.89","percent_visits_covid":"1.04","percent_visits_influenza":"0.39","percent_visits_rsv":"0.49","week_end":"2022-10-15"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.19","percent_visits_covid":"1.04","percent_visits_influenza":"0.58","percent_visits_rsv":"0.59","week_end":"2022-10-22"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.88","percent_visits_covid":"1.15","percent_visits_influenza":"1.19","percent_visits_rsv":"0.56","week_end":"2022-10-29"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.45","percent_visits_covid":"1.25","percent_visits_influenza":"1.66","percent_visits_rsv":"0.59","week_end":"2022-11-05"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.3","percent_visits_covid":"1.33","percent_visits_influenza":"2.42","percent_visits_rsv":"0.61","week_end":"2022-11-12"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.38","percent_visits_covid":"1.27","percent_visits_influenza":"2.62","percent_visits_rsv":"0.52","week_end":"2022-11-19"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.39","percent_visits_covid":"1.62","percent_visits_influenza":"3.33","percent_visits_rsv":"0.5","week_end":"2022-11-26"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.35","percent_visits_covid":"1.67","percent_visits_influenza":"3.24","percent_visits_rsv":"0.51","week_end":"2022-12-03"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.62","percent_visits_covid":"1.84","percent_visits_influenza":"3.48","percent_visits_rsv":"0.36","week_end":"2022-12-10"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.41","percent_visits_covid":"2.2","percent_visits_influenza":"4.0","percent_visits_rsv":"0.28","week_end":"2022-12-17"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"7.45","percent_visits_covid":"2.63","percent_visits_influenza":"4.57","percent_visits_rsv":"0.36","week_end":"2022-12-24"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"8.44","percent_visits_covid":"3.34","percent_visits_influenza":"4.91","percent_visits_rsv":"0.32","week_end":"2022-12-31"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.47","percent_visits_covid":"3.12","percent_visits_influenza":"3.18","percent_visits_rsv":"0.28","week_end":"2023-01-07"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.85","percent_visits_covid":"2.68","percent_visits_influenza":"2.04","percent_visits_rsv":"0.23","week_end":"2023-01-14"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.25","percent_visits_covid":"2.43","percent_visits_influenza":"1.68","percent_visits_rsv":"0.18","week_end":"2023-01-21"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.81","percent_visits_covid":"2.44","percent_visits_influenza":"1.26","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.38","percent_visits_covid":"2.26","percent_visits_influenza":"0.98","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.91","percent_visits_covid":"1.95","percent_visits_influenza":"0.87","percent_visits_rsv":"0.13","week_end":"2023-02-11"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.7","percent_visits_covid":"1.97","percent_visits_influenza":"0.64","percent_visits_rsv":"0.11","week_end":"2023-02-18"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.54","percent_visits_covid":"1.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.11","percent_visits_covid":"1.54","percent_visits_influenza":"0.52","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.04","percent_visits_covid":"1.37","percent_visits_influenza":"0.54","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.92","percent_visits_covid":"1.45","percent_visits_influenza":"0.36","percent_visits_rsv":"0.13","week_end":"2023-03-18"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.09","percent_visits_covid":"1.49","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.78","percent_visits_covid":"1.31","percent_visits_influenza":"0.41","percent_visits_rsv":"0.07","week_end":"2023-04-01"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.8","percent_visits_covid":"1.24","percent_visits_influenza":"0.5","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.73","percent_visits_covid":"1.12","percent_visits_influenza":"0.52","percent_visits_rsv":"0.12","week_end":"2023-04-15"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.61","percent_visits_covid":"1.09","percent_visits_influenza":"0.43","percent_visits_rsv":"0.11","week_end":"2023-04-22"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.64","percent_visits_covid":"1.07","percent_visits_influenza":"0.47","percent_visits_rsv":"0.12","week_end":"2023-04-29"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.43","percent_visits_covid":"0.91","percent_visits_influenza":"0.43","percent_visits_rsv":"0.11","week_end":"2023-05-06"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.42","percent_visits_covid":"0.93","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.43","percent_visits_covid":"0.91","percent_visits_influenza":"0.44","percent_visits_rsv":"0.11","week_end":"2023-05-20"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.49","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.64","percent_visits_covid":"1.01","percent_visits_influenza":"0.57","percent_visits_rsv":"0.08","week_end":"2023-06-03"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.68","percent_visits_covid":"1.02","percent_visits_influenza":"0.57","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.53","percent_visits_covid":"0.99","percent_visits_influenza":"0.51","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.78","percent_visits_covid":"1.17","percent_visits_influenza":"0.51","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.74","percent_visits_covid":"1.33","percent_visits_influenza":"0.33","percent_visits_rsv":"0.09","week_end":"2023-07-01"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.98","percent_visits_covid":"1.61","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.97","percent_visits_covid":"1.57","percent_visits_influenza":"0.33","percent_visits_rsv":"0.09","week_end":"2023-07-15"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.81","percent_visits_covid":"2.3","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-07-22"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.45","percent_visits_covid":"2.95","percent_visits_influenza":"0.41","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.15","percent_visits_covid":"3.61","percent_visits_influenza":"0.42","percent_visits_rsv":"0.16","week_end":"2023-08-05"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.23","percent_visits_covid":"3.69","percent_visits_influenza":"0.44","percent_visits_rsv":"0.15","week_end":"2023-08-12"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.64","percent_visits_covid":"4.07","percent_visits_influenza":"0.4","percent_visits_rsv":"0.22","week_end":"2023-08-19"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.97","percent_visits_covid":"5.06","percent_visits_influenza":"0.69","percent_visits_rsv":"0.27","week_end":"2023-08-26"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.54","percent_visits_covid":"4.57","percent_visits_influenza":"0.72","percent_visits_rsv":"0.32","week_end":"2023-09-02"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.53","percent_visits_covid":"3.6","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-09-09"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.63","percent_visits_covid":"2.48","percent_visits_influenza":"0.8","percent_visits_rsv":"0.39","week_end":"2023-09-16"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.62","percent_visits_covid":"2.0","percent_visits_influenza":"1.1","percent_visits_rsv":"0.58","week_end":"2023-09-23"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.48","percent_visits_covid":"1.56","percent_visits_influenza":"1.36","percent_visits_rsv":"0.6","week_end":"2023-09-30"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.95","percent_visits_covid":"1.35","percent_visits_influenza":"1.81","percent_visits_rsv":"0.86","week_end":"2023-10-07"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.18","percent_visits_covid":"1.24","percent_visits_influenza":"2.03","percent_visits_rsv":"0.99","week_end":"2023-10-14"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.45","percent_visits_covid":"1.16","percent_visits_influenza":"2.49","percent_visits_rsv":"0.85","week_end":"2023-10-21"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.87","percent_visits_covid":"1.01","percent_visits_influenza":"2.84","percent_visits_rsv":"1.11","week_end":"2023-10-28"}
-,{"county":"Hernando","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.62","percent_visits_covid":"0.9","percent_visits_influenza":"3.69","percent_visits_rsv":"1.11","week_end":"2023-11-04"}
-,{"county":"Hernando","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.11","percent_visits_covid":"0.9","percent_visits_influenza":"4.29","percent_visits_rsv":"1.0","week_end":"2023-11-11"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.2","percent_visits_covid":"0.86","percent_visits_influenza":"4.39","percent_visits_rsv":"1.02","week_end":"2023-11-18"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.25","percent_visits_covid":"1.0","percent_visits_influenza":"4.39","percent_visits_rsv":"0.92","week_end":"2023-11-25"}
-,{"county":"Hernando","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.47","percent_visits_covid":"1.06","percent_visits_influenza":"3.8","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.41","percent_visits_covid":"1.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.98","week_end":"2022-10-01"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.17","percent_visits_covid":"1.63","percent_visits_influenza":"0.57","percent_visits_rsv":"1.04","week_end":"2022-10-08"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.7","percent_visits_covid":"1.32","percent_visits_influenza":"0.58","percent_visits_rsv":"0.83","week_end":"2022-10-15"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.02","percent_visits_covid":"1.37","percent_visits_influenza":"0.89","percent_visits_rsv":"0.83","week_end":"2022-10-22"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.09","percent_visits_covid":"1.77","percent_visits_influenza":"1.48","percent_visits_rsv":"0.91","week_end":"2022-10-29"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.14","percent_visits_covid":"1.44","percent_visits_influenza":"2.68","percent_visits_rsv":"1.06","week_end":"2022-11-05"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.56","percent_visits_covid":"1.41","percent_visits_influenza":"3.28","percent_visits_rsv":"0.93","week_end":"2022-11-12"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.6","percent_visits_covid":"1.53","percent_visits_influenza":"3.03","percent_visits_rsv":"1.08","week_end":"2022-11-19"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.08","percent_visits_covid":"2.21","percent_visits_influenza":"5.06","percent_visits_rsv":"0.87","week_end":"2022-11-26"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.16","percent_visits_covid":"2.22","percent_visits_influenza":"4.15","percent_visits_rsv":"0.86","week_end":"2022-12-03"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.78","percent_visits_covid":"2.4","percent_visits_influenza":"3.82","percent_visits_rsv":"0.62","week_end":"2022-12-10"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.04","percent_visits_covid":"2.66","percent_visits_influenza":"4.99","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.87","percent_visits_covid":"3.18","percent_visits_influenza":"5.26","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.56","percent_visits_covid":"4.07","percent_visits_influenza":"5.25","percent_visits_rsv":"0.41","week_end":"2022-12-31"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.46","percent_visits_covid":"3.64","percent_visits_influenza":"3.46","percent_visits_rsv":"0.45","week_end":"2023-01-07"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.69","percent_visits_covid":"3.04","percent_visits_influenza":"2.48","percent_visits_rsv":"0.26","week_end":"2023-01-14"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.99","percent_visits_covid":"2.48","percent_visits_influenza":"1.35","percent_visits_rsv":"0.2","week_end":"2023-01-21"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.5","percent_visits_covid":"2.76","percent_visits_influenza":"1.64","percent_visits_rsv":"0.13","week_end":"2023-01-28"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.73","percent_visits_covid":"2.35","percent_visits_influenza":"1.25","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.89","percent_visits_covid":"2.07","percent_visits_influenza":"0.73","percent_visits_rsv":"0.09","week_end":"2023-02-11"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.91","percent_visits_covid":"2.02","percent_visits_influenza":"0.77","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.77","percent_visits_covid":"2.08","percent_visits_influenza":"0.62","percent_visits_rsv":"0.12","week_end":"2023-02-25"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.45","percent_visits_covid":"1.71","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.28","percent_visits_covid":"1.65","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.22","percent_visits_covid":"1.55","percent_visits_influenza":"0.65","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.12","percent_visits_covid":"1.5","percent_visits_influenza":"0.53","percent_visits_rsv":"0.1","week_end":"2023-03-25"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.16","percent_visits_covid":"1.46","percent_visits_influenza":"0.62","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.0","percent_visits_covid":"1.51","percent_visits_influenza":"0.48","percent_visits_rsv":"0.03","week_end":"2023-04-08"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.65","percent_visits_covid":"1.14","percent_visits_influenza":"0.46","percent_visits_rsv":"0.05","week_end":"2023-04-15"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.46","percent_visits_covid":"1.14","percent_visits_influenza":"0.27","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.62","percent_visits_covid":"1.12","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-29"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.55","percent_visits_rsv":"0.09","week_end":"2023-05-06"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.58","percent_visits_covid":"0.91","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-05-13"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.91","percent_visits_covid":"1.04","percent_visits_influenza":"0.85","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.82","percent_visits_covid":"0.96","percent_visits_influenza":"0.87","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.31","percent_visits_covid":"1.09","percent_visits_influenza":"1.21","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.35","percent_visits_covid":"1.19","percent_visits_influenza":"1.18","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.09","percent_visits_covid":"1.09","percent_visits_influenza":"0.95","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.71","percent_visits_covid":"1.06","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-24"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.1","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.17","week_end":"2023-07-01"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.32","percent_visits_covid":"1.57","percent_visits_influenza":"0.69","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.73","percent_visits_covid":"1.89","percent_visits_influenza":"0.75","percent_visits_rsv":"0.13","week_end":"2023-07-15"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.75","percent_visits_covid":"2.03","percent_visits_influenza":"0.57","percent_visits_rsv":"0.17","week_end":"2023-07-22"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.43","percent_visits_covid":"2.72","percent_visits_influenza":"0.59","percent_visits_rsv":"0.16","week_end":"2023-07-29"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.15","percent_visits_covid":"3.34","percent_visits_influenza":"0.71","percent_visits_rsv":"0.2","week_end":"2023-08-05"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.07","percent_visits_covid":"4.36","percent_visits_influenza":"0.58","percent_visits_rsv":"0.22","week_end":"2023-08-12"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.08","percent_visits_covid":"4.92","percent_visits_influenza":"0.97","percent_visits_rsv":"0.28","week_end":"2023-08-19"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.33","percent_visits_covid":"6.11","percent_visits_influenza":"1.03","percent_visits_rsv":"0.34","week_end":"2023-08-26"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.59","percent_visits_covid":"5.13","percent_visits_influenza":"1.11","percent_visits_rsv":"0.47","week_end":"2023-09-02"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.39","percent_visits_covid":"4.05","percent_visits_influenza":"1.06","percent_visits_rsv":"0.36","week_end":"2023-09-09"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.43","percent_visits_covid":"2.64","percent_visits_influenza":"1.26","percent_visits_rsv":"0.67","week_end":"2023-09-16"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.16","percent_visits_covid":"1.66","percent_visits_influenza":"1.84","percent_visits_rsv":"0.72","week_end":"2023-09-23"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.59","percent_visits_covid":"1.62","percent_visits_influenza":"2.22","percent_visits_rsv":"0.83","week_end":"2023-09-30"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.43","percent_visits_covid":"1.15","percent_visits_influenza":"2.65","percent_visits_rsv":"0.74","week_end":"2023-10-07"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.79","percent_visits_covid":"1.07","percent_visits_influenza":"3.78","percent_visits_rsv":"1.01","week_end":"2023-10-14"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.63","percent_visits_covid":"1.2","percent_visits_influenza":"4.3","percent_visits_rsv":"1.24","week_end":"2023-10-21"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.82","percent_visits_covid":"1.06","percent_visits_influenza":"5.58","percent_visits_rsv":"1.26","week_end":"2023-10-28"}
-,{"county":"Highlands","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.57","percent_visits_covid":"0.82","percent_visits_influenza":"7.49","percent_visits_rsv":"1.39","week_end":"2023-11-04"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.05","percent_visits_covid":"0.8","percent_visits_influenza":"6.7","percent_visits_rsv":"1.66","week_end":"2023-11-11"}
-,{"county":"Highlands","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.29","percent_visits_covid":"0.83","percent_visits_influenza":"7.3","percent_visits_rsv":"1.27","week_end":"2023-11-18"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.6","percent_visits_covid":"0.97","percent_visits_influenza":"6.79","percent_visits_rsv":"0.88","week_end":"2023-11-25"}
-,{"county":"Highlands","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.4","percent_visits_covid":"1.02","percent_visits_influenza":"4.77","percent_visits_rsv":"0.73","week_end":"2023-12-02"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.75","percent_visits_covid":"1.64","percent_visits_influenza":"0.41","percent_visits_rsv":"0.72","week_end":"2022-10-01"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.03","percent_visits_covid":"1.2","percent_visits_influenza":"0.3","percent_visits_rsv":"0.55","week_end":"2022-10-08"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.89","percent_visits_covid":"1.04","percent_visits_influenza":"0.39","percent_visits_rsv":"0.49","week_end":"2022-10-15"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.19","percent_visits_covid":"1.04","percent_visits_influenza":"0.58","percent_visits_rsv":"0.59","week_end":"2022-10-22"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.88","percent_visits_covid":"1.15","percent_visits_influenza":"1.19","percent_visits_rsv":"0.56","week_end":"2022-10-29"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.45","percent_visits_covid":"1.25","percent_visits_influenza":"1.66","percent_visits_rsv":"0.59","week_end":"2022-11-05"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.3","percent_visits_covid":"1.33","percent_visits_influenza":"2.42","percent_visits_rsv":"0.61","week_end":"2022-11-12"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.38","percent_visits_covid":"1.27","percent_visits_influenza":"2.62","percent_visits_rsv":"0.52","week_end":"2022-11-19"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.39","percent_visits_covid":"1.62","percent_visits_influenza":"3.33","percent_visits_rsv":"0.5","week_end":"2022-11-26"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.35","percent_visits_covid":"1.67","percent_visits_influenza":"3.24","percent_visits_rsv":"0.51","week_end":"2022-12-03"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.62","percent_visits_covid":"1.84","percent_visits_influenza":"3.48","percent_visits_rsv":"0.36","week_end":"2022-12-10"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.41","percent_visits_covid":"2.2","percent_visits_influenza":"4.0","percent_visits_rsv":"0.28","week_end":"2022-12-17"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"7.45","percent_visits_covid":"2.63","percent_visits_influenza":"4.57","percent_visits_rsv":"0.36","week_end":"2022-12-24"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"8.44","percent_visits_covid":"3.34","percent_visits_influenza":"4.91","percent_visits_rsv":"0.32","week_end":"2022-12-31"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.97","percent_visits_covid":"2.07","percent_visits_influenza":"0.96","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.47","percent_visits_covid":"3.12","percent_visits_influenza":"3.18","percent_visits_rsv":"0.28","week_end":"2023-01-07"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.85","percent_visits_covid":"2.68","percent_visits_influenza":"2.04","percent_visits_rsv":"0.23","week_end":"2023-01-14"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.25","percent_visits_covid":"2.43","percent_visits_influenza":"1.68","percent_visits_rsv":"0.18","week_end":"2023-01-21"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.81","percent_visits_covid":"2.44","percent_visits_influenza":"1.26","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.38","percent_visits_covid":"2.26","percent_visits_influenza":"0.98","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.91","percent_visits_covid":"1.95","percent_visits_influenza":"0.87","percent_visits_rsv":"0.13","week_end":"2023-02-11"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.7","percent_visits_covid":"1.97","percent_visits_influenza":"0.64","percent_visits_rsv":"0.11","week_end":"2023-02-18"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.54","percent_visits_covid":"1.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.11","percent_visits_covid":"1.54","percent_visits_influenza":"0.52","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.04","percent_visits_covid":"1.37","percent_visits_influenza":"0.54","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.92","percent_visits_covid":"1.45","percent_visits_influenza":"0.36","percent_visits_rsv":"0.13","week_end":"2023-03-18"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.09","percent_visits_covid":"1.49","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.78","percent_visits_covid":"1.31","percent_visits_influenza":"0.41","percent_visits_rsv":"0.07","week_end":"2023-04-01"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.8","percent_visits_covid":"1.24","percent_visits_influenza":"0.5","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.73","percent_visits_covid":"1.12","percent_visits_influenza":"0.52","percent_visits_rsv":"0.12","week_end":"2023-04-15"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.61","percent_visits_covid":"1.09","percent_visits_influenza":"0.43","percent_visits_rsv":"0.11","week_end":"2023-04-22"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.64","percent_visits_covid":"1.07","percent_visits_influenza":"0.47","percent_visits_rsv":"0.12","week_end":"2023-04-29"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.43","percent_visits_covid":"0.91","percent_visits_influenza":"0.43","percent_visits_rsv":"0.11","week_end":"2023-05-06"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.42","percent_visits_covid":"0.93","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.43","percent_visits_covid":"0.91","percent_visits_influenza":"0.44","percent_visits_rsv":"0.11","week_end":"2023-05-20"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.49","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.64","percent_visits_covid":"1.01","percent_visits_influenza":"0.57","percent_visits_rsv":"0.08","week_end":"2023-06-03"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.68","percent_visits_covid":"1.02","percent_visits_influenza":"0.57","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.53","percent_visits_covid":"0.99","percent_visits_influenza":"0.51","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.78","percent_visits_covid":"1.17","percent_visits_influenza":"0.51","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.74","percent_visits_covid":"1.33","percent_visits_influenza":"0.33","percent_visits_rsv":"0.09","week_end":"2023-07-01"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.98","percent_visits_covid":"1.61","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.97","percent_visits_covid":"1.57","percent_visits_influenza":"0.33","percent_visits_rsv":"0.09","week_end":"2023-07-15"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.81","percent_visits_covid":"2.3","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-07-22"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.45","percent_visits_covid":"2.95","percent_visits_influenza":"0.41","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.15","percent_visits_covid":"3.61","percent_visits_influenza":"0.42","percent_visits_rsv":"0.16","week_end":"2023-08-05"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.23","percent_visits_covid":"3.69","percent_visits_influenza":"0.44","percent_visits_rsv":"0.15","week_end":"2023-08-12"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.64","percent_visits_covid":"4.07","percent_visits_influenza":"0.4","percent_visits_rsv":"0.22","week_end":"2023-08-19"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.97","percent_visits_covid":"5.06","percent_visits_influenza":"0.69","percent_visits_rsv":"0.27","week_end":"2023-08-26"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.54","percent_visits_covid":"4.57","percent_visits_influenza":"0.72","percent_visits_rsv":"0.32","week_end":"2023-09-02"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.53","percent_visits_covid":"3.6","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-09-09"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.63","percent_visits_covid":"2.48","percent_visits_influenza":"0.8","percent_visits_rsv":"0.39","week_end":"2023-09-16"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.62","percent_visits_covid":"2.0","percent_visits_influenza":"1.1","percent_visits_rsv":"0.58","week_end":"2023-09-23"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.48","percent_visits_covid":"1.56","percent_visits_influenza":"1.36","percent_visits_rsv":"0.6","week_end":"2023-09-30"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.95","percent_visits_covid":"1.35","percent_visits_influenza":"1.81","percent_visits_rsv":"0.86","week_end":"2023-10-07"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.18","percent_visits_covid":"1.24","percent_visits_influenza":"2.03","percent_visits_rsv":"0.99","week_end":"2023-10-14"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.45","percent_visits_covid":"1.16","percent_visits_influenza":"2.49","percent_visits_rsv":"0.85","week_end":"2023-10-21"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.87","percent_visits_covid":"1.01","percent_visits_influenza":"2.84","percent_visits_rsv":"1.11","week_end":"2023-10-28"}
-,{"county":"Hillsborough","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.62","percent_visits_covid":"0.9","percent_visits_influenza":"3.69","percent_visits_rsv":"1.11","week_end":"2023-11-04"}
-,{"county":"Hillsborough","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.11","percent_visits_covid":"0.9","percent_visits_influenza":"4.29","percent_visits_rsv":"1.0","week_end":"2023-11-11"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.2","percent_visits_covid":"0.86","percent_visits_influenza":"4.39","percent_visits_rsv":"1.02","week_end":"2023-11-18"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.25","percent_visits_covid":"1.0","percent_visits_influenza":"4.39","percent_visits_rsv":"0.92","week_end":"2023-11-25"}
-,{"county":"Hillsborough","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.47","percent_visits_covid":"1.06","percent_visits_influenza":"3.8","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.22","percent_visits_covid":"0.96","percent_visits_influenza":"2.98","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.17","percent_visits_covid":"0.89","percent_visits_influenza":"4.1","percent_visits_rsv":"0.18","week_end":"2022-10-08"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.74","percent_visits_covid":"0.7","percent_visits_influenza":"3.73","percent_visits_rsv":"0.31","week_end":"2022-10-15"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.39","percent_visits_covid":"0.96","percent_visits_influenza":"5.24","percent_visits_rsv":"0.24","week_end":"2022-10-22"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.68","percent_visits_covid":"0.78","percent_visits_influenza":"5.56","percent_visits_rsv":"0.39","week_end":"2022-10-29"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.13","percent_visits_covid":"0.88","percent_visits_influenza":"6.85","percent_visits_rsv":"0.43","week_end":"2022-11-05"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.74","percent_visits_covid":"0.76","percent_visits_influenza":"6.65","percent_visits_rsv":"0.36","week_end":"2022-11-12"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.07","percent_visits_covid":"0.56","percent_visits_influenza":"5.1","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.62","percent_visits_covid":"0.72","percent_visits_influenza":"6.26","percent_visits_rsv":"0.77","week_end":"2022-11-26"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.54","percent_visits_covid":"0.74","percent_visits_influenza":"5.27","percent_visits_rsv":"0.55","week_end":"2022-12-03"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.5","percent_visits_covid":"1.36","percent_visits_influenza":"3.77","percent_visits_rsv":"0.42","week_end":"2022-12-10"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.25","percent_visits_covid":"1.63","percent_visits_influenza":"3.05","percent_visits_rsv":"0.59","week_end":"2022-12-17"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.25","percent_visits_covid":"2.17","percent_visits_influenza":"3.61","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.73","percent_visits_covid":"3.86","percent_visits_influenza":"3.52","percent_visits_rsv":"0.42","week_end":"2022-12-31"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.17","percent_visits_covid":"3.23","percent_visits_influenza":"2.73","percent_visits_rsv":"0.4","week_end":"2023-01-07"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.01","percent_visits_covid":"2.54","percent_visits_influenza":"2.04","percent_visits_rsv":"0.42","week_end":"2023-01-14"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.87","percent_visits_covid":"2.43","percent_visits_influenza":"2.14","percent_visits_rsv":"0.35","week_end":"2023-01-21"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.73","percent_visits_covid":"1.76","percent_visits_influenza":"1.7","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"2.51","percent_visits_influenza":"1.56","percent_visits_rsv":"0.13","week_end":"2023-02-04"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.14","percent_visits_covid":"2.23","percent_visits_influenza":"1.64","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.69","percent_visits_covid":"1.66","percent_visits_influenza":"0.92","percent_visits_rsv":"0.18","week_end":"2023-02-18"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.76","percent_visits_covid":"1.69","percent_visits_influenza":"0.91","percent_visits_rsv":"0.2","week_end":"2023-02-25"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.28","percent_visits_influenza":"0.77","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.73","percent_visits_covid":"0.93","percent_visits_influenza":"0.6","percent_visits_rsv":"0.23","week_end":"2023-03-11"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.54","percent_visits_covid":"0.92","percent_visits_influenza":"0.59","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.99","percent_visits_covid":"1.4","percent_visits_influenza":"0.52","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.6","percent_visits_covid":"1.11","percent_visits_influenza":"0.42","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.37","percent_visits_covid":"0.92","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.43","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.06","percent_visits_covid":"0.82","percent_visits_influenza":"0.19","percent_visits_rsv":"0.07","week_end":"2023-04-22"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.98","percent_visits_covid":"0.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.93","percent_visits_covid":"0.49","percent_visits_influenza":"0.34","percent_visits_rsv":"0.15","week_end":"2023-05-06"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.78","percent_visits_covid":"0.44","percent_visits_influenza":"0.29","percent_visits_rsv":"0.07","week_end":"2023-05-13"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.52","percent_visits_covid":"0.35","percent_visits_influenza":"0.17","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.08","percent_visits_covid":"0.59","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.09","percent_visits_covid":"0.43","percent_visits_influenza":"0.63","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.07","percent_visits_covid":"0.5","percent_visits_influenza":"0.47","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.86","percent_visits_covid":"0.39","percent_visits_influenza":"0.47","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.35","percent_visits_influenza":"0.3","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.96","percent_visits_covid":"0.75","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-07-01"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.41","percent_visits_influenza":"0.12","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.12","percent_visits_covid":"0.9","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.65","percent_visits_covid":"1.12","percent_visits_influenza":"0.44","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.55","percent_visits_covid":"1.25","percent_visits_influenza":"0.22","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.37","percent_visits_covid":"1.83","percent_visits_influenza":"0.39","percent_visits_rsv":"0.24","week_end":"2023-08-05"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.12","percent_visits_covid":"2.42","percent_visits_influenza":"0.45","percent_visits_rsv":"0.28","week_end":"2023-08-12"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"3.5","percent_visits_influenza":"0.39","percent_visits_rsv":"0.35","week_end":"2023-08-19"}
-,{"county":"Holmes","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.48","percent_visits_covid":"4.88","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-08-26"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.52","percent_visits_covid":"4.84","percent_visits_influenza":"0.26","percent_visits_rsv":"0.42","week_end":"2023-09-02"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.46","percent_visits_covid":"3.78","percent_visits_influenza":"0.45","percent_visits_rsv":"0.25","week_end":"2023-09-09"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.31","percent_visits_covid":"2.37","percent_visits_influenza":"0.73","percent_visits_rsv":"0.25","week_end":"2023-09-16"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.57","percent_visits_covid":"1.87","percent_visits_influenza":"1.2","percent_visits_rsv":"0.51","week_end":"2023-09-23"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.95","percent_visits_covid":"2.04","percent_visits_influenza":"2.25","percent_visits_rsv":"0.68","week_end":"2023-09-30"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.33","percent_visits_covid":"1.37","percent_visits_influenza":"4.44","percent_visits_rsv":"0.69","week_end":"2023-10-07"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.91","percent_visits_covid":"1.65","percent_visits_influenza":"5.67","percent_visits_rsv":"0.69","week_end":"2023-10-14"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.18","percent_visits_covid":"1.17","percent_visits_influenza":"6.4","percent_visits_rsv":"0.79","week_end":"2023-10-21"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.58","percent_visits_covid":"0.8","percent_visits_influenza":"7.2","percent_visits_rsv":"0.69","week_end":"2023-10-28"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.51","percent_visits_covid":"0.97","percent_visits_influenza":"7.98","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"Holmes","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"12.22","percent_visits_covid":"0.91","percent_visits_influenza":"10.69","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"10.13","percent_visits_covid":"0.53","percent_visits_influenza":"8.83","percent_visits_rsv":"0.84","week_end":"2023-11-18"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.81","percent_visits_covid":"0.77","percent_visits_influenza":"8.41","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Holmes","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.5","percent_visits_covid":"0.75","percent_visits_influenza":"6.27","percent_visits_rsv":"0.56","week_end":"2023-12-02"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.74","percent_visits_covid":"1.22","percent_visits_influenza":"0.24","percent_visits_rsv":"0.3","week_end":"2022-10-01"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.09","percent_visits_covid":"0.68","percent_visits_influenza":"0.21","percent_visits_rsv":"0.22","week_end":"2022-10-08"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.14","percent_visits_covid":"0.63","percent_visits_influenza":"0.2","percent_visits_rsv":"0.34","week_end":"2022-10-15"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.22","percent_visits_covid":"0.62","percent_visits_influenza":"0.38","percent_visits_rsv":"0.23","week_end":"2022-10-22"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.78","percent_visits_covid":"0.86","percent_visits_influenza":"0.62","percent_visits_rsv":"0.32","week_end":"2022-10-29"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.55","percent_visits_covid":"0.41","percent_visits_influenza":"0.84","percent_visits_rsv":"0.32","week_end":"2022-11-05"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.2","percent_visits_covid":"0.73","percent_visits_influenza":"1.31","percent_visits_rsv":"0.17","week_end":"2022-11-12"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.9","percent_visits_covid":"0.5","percent_visits_influenza":"1.13","percent_visits_rsv":"0.27","week_end":"2022-11-19"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.21","percent_visits_covid":"0.67","percent_visits_influenza":"1.35","percent_visits_rsv":"0.21","week_end":"2022-11-26"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.48","percent_visits_covid":"0.88","percent_visits_influenza":"1.46","percent_visits_rsv":"0.17","week_end":"2022-12-03"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.83","percent_visits_covid":"0.97","percent_visits_influenza":"1.7","percent_visits_rsv":"0.16","week_end":"2022-12-10"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"3.61","percent_visits_covid":"1.08","percent_visits_influenza":"2.48","percent_visits_rsv":"0.08","week_end":"2022-12-17"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"3.85","percent_visits_covid":"1.09","percent_visits_influenza":"2.66","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"3.97","percent_visits_covid":"1.38","percent_visits_influenza":"2.41","percent_visits_rsv":"0.25","week_end":"2022-12-31"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"3.49","percent_visits_covid":"1.82","percent_visits_influenza":"1.56","percent_visits_rsv":"0.16","week_end":"2023-01-07"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.31","percent_visits_covid":"1.28","percent_visits_influenza":"0.94","percent_visits_rsv":"0.11","week_end":"2023-01-14"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.07","percent_visits_covid":"1.32","percent_visits_influenza":"0.7","percent_visits_rsv":"0.07","week_end":"2023-01-21"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.14","percent_visits_covid":"1.56","percent_visits_influenza":"0.55","percent_visits_rsv":"0.04","week_end":"2023-01-28"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.66","percent_visits_covid":"1.1","percent_visits_influenza":"0.57","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.0","percent_visits_covid":"0.73","percent_visits_influenza":"0.23","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.09","percent_visits_covid":"0.76","percent_visits_influenza":"0.27","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.17","percent_visits_covid":"0.89","percent_visits_influenza":"0.28","percent_visits_rsv":"0.01","week_end":"2023-02-25"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.81","percent_visits_covid":"0.53","percent_visits_influenza":"0.23","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.77","percent_visits_covid":"0.59","percent_visits_influenza":"0.18","percent_visits_rsv":"0.03","week_end":"2023-03-11"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.97","percent_visits_covid":"0.74","percent_visits_influenza":"0.22","percent_visits_rsv":"0.01","week_end":"2023-03-18"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.84","percent_visits_covid":"0.61","percent_visits_influenza":"0.2","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.75","percent_visits_covid":"0.46","percent_visits_influenza":"0.29","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.89","percent_visits_covid":"0.65","percent_visits_influenza":"0.24","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.73","percent_visits_covid":"0.43","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.75","percent_visits_covid":"0.47","percent_visits_influenza":"0.26","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.8","percent_visits_covid":"0.48","percent_visits_influenza":"0.32","percent_visits_rsv":"0.01","week_end":"2023-04-29"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.74","percent_visits_covid":"0.47","percent_visits_influenza":"0.27","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.7","percent_visits_covid":"0.44","percent_visits_influenza":"0.23","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.74","percent_visits_covid":"0.47","percent_visits_influenza":"0.26","percent_visits_rsv":"0.01","week_end":"2023-05-20"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.78","percent_visits_covid":"0.45","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.76","percent_visits_covid":"0.34","percent_visits_influenza":"0.37","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.82","percent_visits_covid":"0.51","percent_visits_influenza":"0.28","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"0.87","percent_visits_covid":"0.54","percent_visits_influenza":"0.32","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.25","percent_visits_covid":"0.68","percent_visits_influenza":"0.48","percent_visits_rsv":"0.09","week_end":"2023-06-24"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.25","percent_visits_covid":"0.83","percent_visits_influenza":"0.38","percent_visits_rsv":"0.07","week_end":"2023-07-01"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.39","percent_visits_covid":"1.03","percent_visits_influenza":"0.29","percent_visits_rsv":"0.1","week_end":"2023-07-08"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.47","percent_visits_covid":"1.06","percent_visits_influenza":"0.34","percent_visits_rsv":"0.07","week_end":"2023-07-15"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.34","percent_visits_covid":"0.94","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.16","percent_visits_covid":"1.04","percent_visits_influenza":"0.11","percent_visits_rsv":"0.01","week_end":"2023-07-29"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.23","percent_visits_covid":"0.98","percent_visits_influenza":"0.17","percent_visits_rsv":"0.1","week_end":"2023-08-05"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.53","percent_visits_covid":"1.15","percent_visits_influenza":"0.28","percent_visits_rsv":"0.15","week_end":"2023-08-12"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.65","percent_visits_covid":"1.46","percent_visits_influenza":"0.15","percent_visits_rsv":"0.04","week_end":"2023-08-19"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.93","percent_visits_covid":"1.64","percent_visits_influenza":"0.24","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.28","percent_visits_covid":"1.93","percent_visits_influenza":"0.17","percent_visits_rsv":"0.23","week_end":"2023-09-02"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.7","percent_visits_covid":"2.13","percent_visits_influenza":"0.39","percent_visits_rsv":"0.23","week_end":"2023-09-09"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.13","percent_visits_covid":"1.52","percent_visits_influenza":"0.52","percent_visits_rsv":"0.15","week_end":"2023-09-16"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.07","percent_visits_covid":"1.32","percent_visits_influenza":"0.49","percent_visits_rsv":"0.26","week_end":"2023-09-23"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.77","percent_visits_covid":"1.08","percent_visits_influenza":"0.51","percent_visits_rsv":"0.18","week_end":"2023-09-30"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.93","percent_visits_covid":"0.97","percent_visits_influenza":"0.57","percent_visits_rsv":"0.42","week_end":"2023-10-07"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"1.75","percent_visits_covid":"0.48","percent_visits_influenza":"0.81","percent_visits_rsv":"0.48","week_end":"2023-10-14"}
-,{"county":"Indian River","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.49","percent_visits_covid":"0.61","percent_visits_influenza":"1.5","percent_visits_rsv":"0.39","week_end":"2023-10-21"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.79","percent_visits_covid":"0.54","percent_visits_influenza":"1.79","percent_visits_rsv":"0.48","week_end":"2023-10-28"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.68","percent_visits_covid":"0.65","percent_visits_influenza":"1.68","percent_visits_rsv":"0.37","week_end":"2023-11-04"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.68","percent_visits_covid":"0.52","percent_visits_influenza":"1.68","percent_visits_rsv":"0.48","week_end":"2023-11-11"}
-,{"county":"Indian River","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.17","percent_visits_covid":"0.44","percent_visits_influenza":"1.45","percent_visits_rsv":"0.29","week_end":"2023-11-18"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.97","percent_visits_covid":"0.75","percent_visits_influenza":"1.76","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Indian River","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Brevard (Palm Bay), FL - Indian River, FL","hsa_counties":"Brevard, Indian River","percent_visits_combined":"2.54","percent_visits_covid":"0.72","percent_visits_influenza":"1.48","percent_visits_rsv":"0.37","week_end":"2023-12-02"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.22","percent_visits_covid":"0.96","percent_visits_influenza":"2.98","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.17","percent_visits_covid":"0.89","percent_visits_influenza":"4.1","percent_visits_rsv":"0.18","week_end":"2022-10-08"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.74","percent_visits_covid":"0.7","percent_visits_influenza":"3.73","percent_visits_rsv":"0.31","week_end":"2022-10-15"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.39","percent_visits_covid":"0.96","percent_visits_influenza":"5.24","percent_visits_rsv":"0.24","week_end":"2022-10-22"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.68","percent_visits_covid":"0.78","percent_visits_influenza":"5.56","percent_visits_rsv":"0.39","week_end":"2022-10-29"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.13","percent_visits_covid":"0.88","percent_visits_influenza":"6.85","percent_visits_rsv":"0.43","week_end":"2022-11-05"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.74","percent_visits_covid":"0.76","percent_visits_influenza":"6.65","percent_visits_rsv":"0.36","week_end":"2022-11-12"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.07","percent_visits_covid":"0.56","percent_visits_influenza":"5.1","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.62","percent_visits_covid":"0.72","percent_visits_influenza":"6.26","percent_visits_rsv":"0.77","week_end":"2022-11-26"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.54","percent_visits_covid":"0.74","percent_visits_influenza":"5.27","percent_visits_rsv":"0.55","week_end":"2022-12-03"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.5","percent_visits_covid":"1.36","percent_visits_influenza":"3.77","percent_visits_rsv":"0.42","week_end":"2022-12-10"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.25","percent_visits_covid":"1.63","percent_visits_influenza":"3.05","percent_visits_rsv":"0.59","week_end":"2022-12-17"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.25","percent_visits_covid":"2.17","percent_visits_influenza":"3.61","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.73","percent_visits_covid":"3.86","percent_visits_influenza":"3.52","percent_visits_rsv":"0.42","week_end":"2022-12-31"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.17","percent_visits_covid":"3.23","percent_visits_influenza":"2.73","percent_visits_rsv":"0.4","week_end":"2023-01-07"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.01","percent_visits_covid":"2.54","percent_visits_influenza":"2.04","percent_visits_rsv":"0.42","week_end":"2023-01-14"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.87","percent_visits_covid":"2.43","percent_visits_influenza":"2.14","percent_visits_rsv":"0.35","week_end":"2023-01-21"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.73","percent_visits_covid":"1.76","percent_visits_influenza":"1.7","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"2.51","percent_visits_influenza":"1.56","percent_visits_rsv":"0.13","week_end":"2023-02-04"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.14","percent_visits_covid":"2.23","percent_visits_influenza":"1.64","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.69","percent_visits_covid":"1.66","percent_visits_influenza":"0.92","percent_visits_rsv":"0.18","week_end":"2023-02-18"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.76","percent_visits_covid":"1.69","percent_visits_influenza":"0.91","percent_visits_rsv":"0.2","week_end":"2023-02-25"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.28","percent_visits_influenza":"0.77","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.73","percent_visits_covid":"0.93","percent_visits_influenza":"0.6","percent_visits_rsv":"0.23","week_end":"2023-03-11"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.54","percent_visits_covid":"0.92","percent_visits_influenza":"0.59","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.99","percent_visits_covid":"1.4","percent_visits_influenza":"0.52","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.6","percent_visits_covid":"1.11","percent_visits_influenza":"0.42","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.37","percent_visits_covid":"0.92","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.43","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.06","percent_visits_covid":"0.82","percent_visits_influenza":"0.19","percent_visits_rsv":"0.07","week_end":"2023-04-22"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.98","percent_visits_covid":"0.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.93","percent_visits_covid":"0.49","percent_visits_influenza":"0.34","percent_visits_rsv":"0.15","week_end":"2023-05-06"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.78","percent_visits_covid":"0.44","percent_visits_influenza":"0.29","percent_visits_rsv":"0.07","week_end":"2023-05-13"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.52","percent_visits_covid":"0.35","percent_visits_influenza":"0.17","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.08","percent_visits_covid":"0.59","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.09","percent_visits_covid":"0.43","percent_visits_influenza":"0.63","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.07","percent_visits_covid":"0.5","percent_visits_influenza":"0.47","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.86","percent_visits_covid":"0.39","percent_visits_influenza":"0.47","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.35","percent_visits_influenza":"0.3","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.96","percent_visits_covid":"0.75","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-07-01"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.41","percent_visits_influenza":"0.12","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.12","percent_visits_covid":"0.9","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.65","percent_visits_covid":"1.12","percent_visits_influenza":"0.44","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.55","percent_visits_covid":"1.25","percent_visits_influenza":"0.22","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.37","percent_visits_covid":"1.83","percent_visits_influenza":"0.39","percent_visits_rsv":"0.24","week_end":"2023-08-05"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.12","percent_visits_covid":"2.42","percent_visits_influenza":"0.45","percent_visits_rsv":"0.28","week_end":"2023-08-12"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"3.5","percent_visits_influenza":"0.39","percent_visits_rsv":"0.35","week_end":"2023-08-19"}
-,{"county":"Jackson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.48","percent_visits_covid":"4.88","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-08-26"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.52","percent_visits_covid":"4.84","percent_visits_influenza":"0.26","percent_visits_rsv":"0.42","week_end":"2023-09-02"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.46","percent_visits_covid":"3.78","percent_visits_influenza":"0.45","percent_visits_rsv":"0.25","week_end":"2023-09-09"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.31","percent_visits_covid":"2.37","percent_visits_influenza":"0.73","percent_visits_rsv":"0.25","week_end":"2023-09-16"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.57","percent_visits_covid":"1.87","percent_visits_influenza":"1.2","percent_visits_rsv":"0.51","week_end":"2023-09-23"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.95","percent_visits_covid":"2.04","percent_visits_influenza":"2.25","percent_visits_rsv":"0.68","week_end":"2023-09-30"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.33","percent_visits_covid":"1.37","percent_visits_influenza":"4.44","percent_visits_rsv":"0.69","week_end":"2023-10-07"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.91","percent_visits_covid":"1.65","percent_visits_influenza":"5.67","percent_visits_rsv":"0.69","week_end":"2023-10-14"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.18","percent_visits_covid":"1.17","percent_visits_influenza":"6.4","percent_visits_rsv":"0.79","week_end":"2023-10-21"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.58","percent_visits_covid":"0.8","percent_visits_influenza":"7.2","percent_visits_rsv":"0.69","week_end":"2023-10-28"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.51","percent_visits_covid":"0.97","percent_visits_influenza":"7.98","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"Jackson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"12.22","percent_visits_covid":"0.91","percent_visits_influenza":"10.69","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"10.13","percent_visits_covid":"0.53","percent_visits_influenza":"8.83","percent_visits_rsv":"0.84","week_end":"2023-11-18"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.81","percent_visits_covid":"0.77","percent_visits_influenza":"8.41","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Jackson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.5","percent_visits_covid":"0.75","percent_visits_influenza":"6.27","percent_visits_rsv":"0.56","week_end":"2023-12-02"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.01","percent_visits_covid":"0.54","percent_visits_influenza":"1.35","percent_visits_rsv":"0.12","week_end":"2022-10-01"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.02","percent_visits_covid":"0.37","percent_visits_influenza":"1.57","percent_visits_rsv":"0.08","week_end":"2022-10-08"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.71","percent_visits_rsv":"0.1","week_end":"2022-10-15"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.36","percent_visits_influenza":"3.32","percent_visits_rsv":"0.18","week_end":"2022-10-22"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.16","percent_visits_covid":"0.45","percent_visits_influenza":"6.55","percent_visits_rsv":"0.25","week_end":"2022-10-29"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.71","percent_visits_covid":"0.38","percent_visits_influenza":"7.2","percent_visits_rsv":"0.27","week_end":"2022-11-05"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"0.47","percent_visits_influenza":"5.93","percent_visits_rsv":"0.11","week_end":"2022-11-12"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.14","percent_visits_covid":"0.51","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-11-19"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.18","percent_visits_covid":"0.79","percent_visits_influenza":"3.33","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.95","percent_visits_covid":"0.73","percent_visits_influenza":"3.09","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.75","percent_visits_covid":"1.36","percent_visits_influenza":"2.29","percent_visits_rsv":"0.23","week_end":"2022-12-10"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.15","percent_visits_covid":"1.56","percent_visits_influenza":"2.35","percent_visits_rsv":"0.38","week_end":"2022-12-17"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.24","percent_visits_covid":"2.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.33","week_end":"2022-12-24"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.71","percent_visits_influenza":"1.92","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.76","percent_visits_covid":"2.86","percent_visits_influenza":"1.71","percent_visits_rsv":"0.23","week_end":"2023-01-07"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.12","percent_visits_covid":"3.63","percent_visits_influenza":"1.45","percent_visits_rsv":"0.18","week_end":"2023-01-14"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.85","percent_visits_influenza":"1.62","percent_visits_rsv":"0.23","week_end":"2023-01-21"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.63","percent_visits_covid":"3.24","percent_visits_influenza":"1.14","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.71","percent_visits_covid":"2.49","percent_visits_influenza":"1.1","percent_visits_rsv":"0.16","week_end":"2023-02-04"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.04","percent_visits_covid":"2.3","percent_visits_influenza":"1.48","percent_visits_rsv":"0.32","week_end":"2023-02-11"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.0","percent_visits_covid":"2.84","percent_visits_influenza":"1.01","percent_visits_rsv":"0.24","week_end":"2023-02-18"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.83","percent_visits_covid":"1.96","percent_visits_influenza":"0.78","percent_visits_rsv":"0.17","week_end":"2023-02-25"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.96","percent_visits_covid":"1.3","percent_visits_influenza":"0.66","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.37","percent_visits_covid":"1.2","percent_visits_influenza":"0.9","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.2","percent_visits_influenza":"0.71","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.5","percent_visits_covid":"1.53","percent_visits_influenza":"0.87","percent_visits_rsv":"0.17","week_end":"2023-03-25"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.0","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"1.29","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.95","percent_visits_covid":"1.15","percent_visits_influenza":"0.8","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.65","percent_visits_rsv":"0.15","week_end":"2023-04-22"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.92","percent_visits_covid":"0.69","percent_visits_influenza":"1.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.68","percent_visits_covid":"0.84","percent_visits_influenza":"0.82","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.56","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.98","percent_visits_covid":"0.47","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-05-20"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.97","percent_visits_covid":"0.48","percent_visits_influenza":"0.38","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.54","percent_visits_covid":"0.72","percent_visits_influenza":"0.74","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.23","percent_visits_covid":"0.55","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.21","percent_visits_covid":"0.53","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.45","percent_visits_covid":"0.54","percent_visits_influenza":"0.84","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"0.85","percent_visits_influenza":"0.98","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.06","percent_visits_covid":"1.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.09","percent_visits_influenza":"0.85","percent_visits_rsv":"0.16","week_end":"2023-07-15"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.8","percent_visits_covid":"1.87","percent_visits_influenza":"0.81","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.27","percent_visits_covid":"2.44","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.05","percent_visits_covid":"3.19","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-05"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.65","percent_visits_covid":"3.62","percent_visits_influenza":"0.9","percent_visits_rsv":"0.23","week_end":"2023-08-12"}
-,{"county":"Jefferson","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.81","percent_visits_covid":"3.71","percent_visits_influenza":"1.01","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"5.1","percent_visits_influenza":"1.19","percent_visits_rsv":"0.35","week_end":"2023-08-26"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.8","percent_visits_covid":"4.3","percent_visits_influenza":"1.14","percent_visits_rsv":"0.45","week_end":"2023-09-02"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.08","percent_visits_covid":"3.34","percent_visits_influenza":"1.45","percent_visits_rsv":"0.37","week_end":"2023-09-09"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.03","percent_visits_covid":"2.73","percent_visits_influenza":"1.05","percent_visits_rsv":"0.36","week_end":"2023-09-16"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.94","percent_visits_covid":"1.88","percent_visits_influenza":"1.27","percent_visits_rsv":"0.84","week_end":"2023-09-23"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.46","percent_visits_covid":"1.72","percent_visits_influenza":"1.64","percent_visits_rsv":"1.19","week_end":"2023-09-30"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.44","percent_visits_covid":"0.98","percent_visits_influenza":"1.4","percent_visits_rsv":"1.09","week_end":"2023-10-07"}
-,{"county":"Jefferson","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.72","percent_visits_influenza":"2.13","percent_visits_rsv":"1.04","week_end":"2023-10-14"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.56","percent_visits_covid":"0.89","percent_visits_influenza":"2.47","percent_visits_rsv":"1.28","week_end":"2023-10-21"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.93","percent_visits_covid":"1.07","percent_visits_influenza":"2.62","percent_visits_rsv":"1.41","week_end":"2023-10-28"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.0","percent_visits_covid":"0.76","percent_visits_influenza":"2.75","percent_visits_rsv":"1.58","week_end":"2023-11-04"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.12","percent_visits_covid":"0.84","percent_visits_influenza":"3.96","percent_visits_rsv":"1.46","week_end":"2023-11-11"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.19","percent_visits_covid":"2.42","percent_visits_influenza":"4.35","percent_visits_rsv":"0.58","week_end":"2022-12-03"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.87","percent_visits_covid":"0.87","percent_visits_influenza":"4.92","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.97","percent_visits_covid":"0.95","percent_visits_influenza":"4.34","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Jefferson","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.93","percent_visits_covid":"0.66","percent_visits_influenza":"4.54","percent_visits_rsv":"0.88","week_end":"2023-12-02"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Lafayette","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"0.83","percent_visits_influenza":"0.83","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Lafayette","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Lafayette","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.01","percent_visits_covid":"1.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.84","week_end":"2022-10-01"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.17","percent_visits_covid":"1.33","percent_visits_influenza":"0.35","percent_visits_rsv":"0.5","week_end":"2022-10-08"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.04","percent_visits_covid":"1.14","percent_visits_influenza":"0.52","percent_visits_rsv":"0.39","week_end":"2022-10-15"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.17","percent_visits_influenza":"0.92","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.69","percent_visits_covid":"1.24","percent_visits_influenza":"1.92","percent_visits_rsv":"0.55","week_end":"2022-10-29"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.56","percent_visits_covid":"1.24","percent_visits_influenza":"2.94","percent_visits_rsv":"0.42","week_end":"2022-11-05"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.62","percent_visits_covid":"1.39","percent_visits_influenza":"3.77","percent_visits_rsv":"0.51","week_end":"2022-11-12"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"1.29","percent_visits_influenza":"3.02","percent_visits_rsv":"0.41","week_end":"2022-11-19"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.93","percent_visits_covid":"1.68","percent_visits_influenza":"3.87","percent_visits_rsv":"0.45","week_end":"2022-11-26"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.38","percent_visits_covid":"2.16","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.23","percent_visits_covid":"2.28","percent_visits_influenza":"3.73","percent_visits_rsv":"0.3","week_end":"2022-12-10"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.6","percent_visits_covid":"2.63","percent_visits_influenza":"3.85","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.19","percent_visits_covid":"2.88","percent_visits_influenza":"4.19","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"8.36","percent_visits_covid":"4.03","percent_visits_influenza":"4.22","percent_visits_rsv":"0.26","week_end":"2022-12-31"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.15","percent_visits_covid":"3.82","percent_visits_influenza":"3.24","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.24","percent_visits_covid":"2.99","percent_visits_influenza":"2.2","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.7","percent_visits_covid":"2.77","percent_visits_influenza":"1.85","percent_visits_rsv":"0.14","week_end":"2023-01-21"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"2.5","percent_visits_influenza":"1.42","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.46","percent_visits_covid":"2.23","percent_visits_influenza":"1.18","percent_visits_rsv":"0.1","week_end":"2023-02-04"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.84","percent_visits_covid":"1.8","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-02-11"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.57","percent_visits_covid":"1.69","percent_visits_influenza":"0.78","percent_visits_rsv":"0.1","week_end":"2023-02-18"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.13","percent_visits_covid":"1.5","percent_visits_influenza":"0.57","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.11","percent_visits_covid":"1.49","percent_visits_influenza":"0.54","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.17","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.58","percent_visits_covid":"1.18","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.14","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.8","percent_visits_covid":"1.29","percent_visits_influenza":"0.46","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.64","percent_visits_covid":"1.14","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-15"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.48","percent_visits_covid":"0.98","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.59","percent_visits_covid":"0.88","percent_visits_influenza":"0.68","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.63","percent_visits_covid":"0.85","percent_visits_influenza":"0.75","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.73","percent_visits_covid":"0.83","percent_visits_influenza":"0.86","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.12","percent_visits_covid":"1.06","percent_visits_influenza":"1.01","percent_visits_rsv":"0.06","week_end":"2023-05-27"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.31","percent_visits_influenza":"1.16","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.21","percent_visits_covid":"1.16","percent_visits_influenza":"0.97","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.94","percent_visits_covid":"1.18","percent_visits_influenza":"0.74","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.05","percent_visits_covid":"1.29","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.09","percent_visits_covid":"1.37","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-07-01"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.36","percent_visits_covid":"1.62","percent_visits_influenza":"0.71","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.54","percent_visits_covid":"1.89","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.0","percent_visits_covid":"2.35","percent_visits_influenza":"0.59","percent_visits_rsv":"0.07","week_end":"2023-07-22"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.49","percent_visits_covid":"2.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-07-29"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.98","percent_visits_covid":"3.43","percent_visits_influenza":"0.51","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.23","percent_visits_covid":"3.75","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.86","percent_visits_covid":"4.25","percent_visits_influenza":"0.51","percent_visits_rsv":"0.13","week_end":"2023-08-19"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.72","percent_visits_covid":"4.94","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.61","percent_visits_covid":"4.66","percent_visits_influenza":"0.82","percent_visits_rsv":"0.16","week_end":"2023-09-02"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"3.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-09"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.75","percent_visits_covid":"2.8","percent_visits_influenza":"0.77","percent_visits_rsv":"0.21","week_end":"2023-09-16"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.43","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.35","week_end":"2023-09-23"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.36","percent_visits_covid":"1.81","percent_visits_influenza":"1.17","percent_visits_rsv":"0.4","week_end":"2023-09-30"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.32","percent_visits_covid":"1.43","percent_visits_influenza":"1.38","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.59","percent_visits_covid":"1.3","percent_visits_influenza":"1.66","percent_visits_rsv":"0.65","week_end":"2023-10-14"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.82","percent_visits_covid":"1.22","percent_visits_influenza":"1.8","percent_visits_rsv":"0.84","week_end":"2023-10-21"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"1.21","percent_visits_influenza":"2.01","percent_visits_rsv":"0.83","week_end":"2023-10-28"}
-,{"county":"Lake","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.48","percent_visits_covid":"0.91","percent_visits_influenza":"2.75","percent_visits_rsv":"0.86","week_end":"2023-11-04"}
-,{"county":"Lake","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.03","percent_visits_covid":"0.91","percent_visits_influenza":"3.21","percent_visits_rsv":"0.97","week_end":"2023-11-11"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.43","percent_visits_covid":"1.03","percent_visits_influenza":"3.59","percent_visits_rsv":"0.88","week_end":"2023-11-18"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.18","percent_visits_covid":"1.15","percent_visits_influenza":"4.28","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Lake","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.22","percent_visits_covid":"1.28","percent_visits_influenza":"4.29","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.31","percent_visits_covid":"1.88","percent_visits_influenza":"0.69","percent_visits_rsv":"0.79","week_end":"2022-10-01"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.56","percent_visits_covid":"1.24","percent_visits_influenza":"0.62","percent_visits_rsv":"0.75","week_end":"2022-10-08"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.84","percent_visits_covid":"1.61","percent_visits_influenza":"0.59","percent_visits_rsv":"0.64","week_end":"2022-10-15"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.87","percent_visits_covid":"1.84","percent_visits_influenza":"0.65","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.35","percent_visits_covid":"1.75","percent_visits_influenza":"1.18","percent_visits_rsv":"0.45","week_end":"2022-10-29"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.95","percent_visits_covid":"1.88","percent_visits_influenza":"2.4","percent_visits_rsv":"0.68","week_end":"2022-11-05"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.72","percent_visits_covid":"1.89","percent_visits_influenza":"3.32","percent_visits_rsv":"0.57","week_end":"2022-11-12"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.74","percent_visits_covid":"1.9","percent_visits_influenza":"4.27","percent_visits_rsv":"0.67","week_end":"2022-11-19"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.83","percent_visits_covid":"2.25","percent_visits_influenza":"4.9","percent_visits_rsv":"0.8","week_end":"2022-11-26"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.4","percent_visits_covid":"2.71","percent_visits_influenza":"4.31","percent_visits_rsv":"0.54","week_end":"2022-12-10"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"9.12","percent_visits_covid":"2.99","percent_visits_influenza":"5.63","percent_visits_rsv":"0.66","week_end":"2022-12-17"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"8.95","percent_visits_covid":"3.23","percent_visits_influenza":"5.21","percent_visits_rsv":"0.63","week_end":"2022-12-24"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"9.68","percent_visits_covid":"4.67","percent_visits_influenza":"4.64","percent_visits_rsv":"0.61","week_end":"2022-12-31"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"7.34","percent_visits_covid":"3.83","percent_visits_influenza":"3.09","percent_visits_rsv":"0.55","week_end":"2023-01-07"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.37","percent_visits_covid":"3.22","percent_visits_influenza":"1.75","percent_visits_rsv":"0.48","week_end":"2023-01-14"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.68","percent_visits_covid":"2.81","percent_visits_influenza":"1.5","percent_visits_rsv":"0.49","week_end":"2023-01-21"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.34","percent_visits_covid":"2.69","percent_visits_influenza":"1.37","percent_visits_rsv":"0.31","week_end":"2023-01-28"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.63","percent_visits_covid":"2.31","percent_visits_influenza":"1.1","percent_visits_rsv":"0.26","week_end":"2023-02-04"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.24","percent_visits_covid":"2.14","percent_visits_influenza":"0.87","percent_visits_rsv":"0.3","week_end":"2023-02-11"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.2","percent_visits_covid":"2.08","percent_visits_influenza":"0.89","percent_visits_rsv":"0.27","week_end":"2023-02-18"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.3","percent_visits_covid":"2.08","percent_visits_influenza":"0.8","percent_visits_rsv":"0.43","week_end":"2023-02-25"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.06","percent_visits_covid":"2.01","percent_visits_influenza":"0.85","percent_visits_rsv":"0.25","week_end":"2023-03-04"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.84","percent_visits_covid":"1.7","percent_visits_influenza":"0.9","percent_visits_rsv":"0.27","week_end":"2023-03-11"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.79","percent_visits_covid":"1.79","percent_visits_influenza":"0.8","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.62","percent_visits_covid":"1.76","percent_visits_influenza":"0.7","percent_visits_rsv":"0.2","week_end":"2023-03-25"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.82","percent_visits_covid":"1.88","percent_visits_influenza":"0.73","percent_visits_rsv":"0.26","week_end":"2023-04-01"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.34","percent_visits_covid":"1.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.16","week_end":"2023-04-08"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.4","percent_visits_covid":"1.6","percent_visits_influenza":"0.7","percent_visits_rsv":"0.12","week_end":"2023-04-15"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.11","percent_visits_covid":"1.38","percent_visits_influenza":"0.54","percent_visits_rsv":"0.19","week_end":"2023-04-22"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.97","percent_visits_covid":"1.37","percent_visits_influenza":"0.48","percent_visits_rsv":"0.16","week_end":"2023-04-29"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.81","percent_visits_covid":"1.09","percent_visits_influenza":"0.6","percent_visits_rsv":"0.14","week_end":"2023-05-06"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.89","percent_visits_covid":"1.03","percent_visits_influenza":"0.69","percent_visits_rsv":"0.19","week_end":"2023-05-13"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"1.97","percent_visits_covid":"1.04","percent_visits_influenza":"0.79","percent_visits_rsv":"0.16","week_end":"2023-05-20"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.45","percent_visits_covid":"1.15","percent_visits_influenza":"1.09","percent_visits_rsv":"0.24","week_end":"2023-05-27"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.58","percent_visits_covid":"1.25","percent_visits_influenza":"1.17","percent_visits_rsv":"0.16","week_end":"2023-06-03"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.39","percent_visits_covid":"1.27","percent_visits_influenza":"1.01","percent_visits_rsv":"0.15","week_end":"2023-06-10"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.68","percent_visits_covid":"1.51","percent_visits_influenza":"0.95","percent_visits_rsv":"0.26","week_end":"2023-06-17"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.46","percent_visits_covid":"1.37","percent_visits_influenza":"0.82","percent_visits_rsv":"0.3","week_end":"2023-06-24"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.48","percent_visits_covid":"1.47","percent_visits_influenza":"0.84","percent_visits_rsv":"0.2","week_end":"2023-07-01"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"2.88","percent_visits_covid":"1.8","percent_visits_influenza":"0.89","percent_visits_rsv":"0.21","week_end":"2023-07-08"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.01","percent_visits_covid":"2.29","percent_visits_influenza":"0.54","percent_visits_rsv":"0.19","week_end":"2023-07-15"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.3","percent_visits_covid":"2.66","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-07-22"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.03","percent_visits_covid":"3.2","percent_visits_influenza":"0.51","percent_visits_rsv":"0.38","week_end":"2023-07-29"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.78","percent_visits_covid":"3.97","percent_visits_influenza":"0.4","percent_visits_rsv":"0.43","week_end":"2023-08-05"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.55","percent_visits_covid":"3.82","percent_visits_influenza":"0.45","percent_visits_rsv":"0.35","week_end":"2023-08-12"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.21","percent_visits_covid":"4.35","percent_visits_influenza":"0.56","percent_visits_rsv":"0.36","week_end":"2023-08-19"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.84","percent_visits_covid":"5.66","percent_visits_influenza":"0.78","percent_visits_rsv":"0.46","week_end":"2023-08-26"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.32","percent_visits_covid":"4.25","percent_visits_influenza":"0.64","percent_visits_rsv":"0.49","week_end":"2023-09-02"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.21","percent_visits_covid":"3.24","percent_visits_influenza":"0.45","percent_visits_rsv":"0.57","week_end":"2023-09-09"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.36","percent_visits_covid":"2.15","percent_visits_influenza":"0.76","percent_visits_rsv":"0.48","week_end":"2023-09-16"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.62","percent_visits_covid":"2.17","percent_visits_influenza":"0.85","percent_visits_rsv":"0.66","week_end":"2023-09-23"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.98","percent_visits_covid":"1.94","percent_visits_influenza":"1.05","percent_visits_rsv":"1.08","week_end":"2023-09-30"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"3.98","percent_visits_covid":"1.59","percent_visits_influenza":"1.3","percent_visits_rsv":"1.17","week_end":"2023-10-07"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.44","percent_visits_covid":"1.41","percent_visits_influenza":"1.85","percent_visits_rsv":"1.21","week_end":"2023-10-14"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.35","percent_visits_covid":"1.36","percent_visits_influenza":"2.17","percent_visits_rsv":"0.9","week_end":"2023-10-21"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.74","percent_visits_covid":"1.33","percent_visits_influenza":"2.67","percent_visits_rsv":"0.82","week_end":"2023-10-28"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.81","percent_visits_covid":"0.89","percent_visits_influenza":"3.2","percent_visits_rsv":"0.77","week_end":"2023-11-04"}
-,{"county":"Lee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.54","percent_visits_covid":"0.84","percent_visits_influenza":"4.06","percent_visits_rsv":"0.72","week_end":"2023-11-11"}
-,{"county":"Lee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"6.22","percent_visits_covid":"1.05","percent_visits_influenza":"4.31","percent_visits_rsv":"0.91","week_end":"2023-11-18"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"5.92","percent_visits_covid":"1.29","percent_visits_influenza":"3.87","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Lee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Lee (Cape Coral), FL - Collier, FL","hsa_counties":"Collier, Glades, Hendry, Lee","percent_visits_combined":"4.73","percent_visits_covid":"1.05","percent_visits_influenza":"3.24","percent_visits_rsv":"0.51","week_end":"2023-12-02"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.01","percent_visits_covid":"0.54","percent_visits_influenza":"1.35","percent_visits_rsv":"0.12","week_end":"2022-10-01"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.02","percent_visits_covid":"0.37","percent_visits_influenza":"1.57","percent_visits_rsv":"0.08","week_end":"2022-10-08"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.71","percent_visits_rsv":"0.1","week_end":"2022-10-15"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.36","percent_visits_influenza":"3.32","percent_visits_rsv":"0.18","week_end":"2022-10-22"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.16","percent_visits_covid":"0.45","percent_visits_influenza":"6.55","percent_visits_rsv":"0.25","week_end":"2022-10-29"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.71","percent_visits_covid":"0.38","percent_visits_influenza":"7.2","percent_visits_rsv":"0.27","week_end":"2022-11-05"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"0.47","percent_visits_influenza":"5.93","percent_visits_rsv":"0.11","week_end":"2022-11-12"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.14","percent_visits_covid":"0.51","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-11-19"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.18","percent_visits_covid":"0.79","percent_visits_influenza":"3.33","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.95","percent_visits_covid":"0.73","percent_visits_influenza":"3.09","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.75","percent_visits_covid":"1.36","percent_visits_influenza":"2.29","percent_visits_rsv":"0.23","week_end":"2022-12-10"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.15","percent_visits_covid":"1.56","percent_visits_influenza":"2.35","percent_visits_rsv":"0.38","week_end":"2022-12-17"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.24","percent_visits_covid":"2.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.33","week_end":"2022-12-24"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.71","percent_visits_influenza":"1.92","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.76","percent_visits_covid":"2.86","percent_visits_influenza":"1.71","percent_visits_rsv":"0.23","week_end":"2023-01-07"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.12","percent_visits_covid":"3.63","percent_visits_influenza":"1.45","percent_visits_rsv":"0.18","week_end":"2023-01-14"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.85","percent_visits_influenza":"1.62","percent_visits_rsv":"0.23","week_end":"2023-01-21"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.63","percent_visits_covid":"3.24","percent_visits_influenza":"1.14","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.71","percent_visits_covid":"2.49","percent_visits_influenza":"1.1","percent_visits_rsv":"0.16","week_end":"2023-02-04"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.04","percent_visits_covid":"2.3","percent_visits_influenza":"1.48","percent_visits_rsv":"0.32","week_end":"2023-02-11"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.0","percent_visits_covid":"2.84","percent_visits_influenza":"1.01","percent_visits_rsv":"0.24","week_end":"2023-02-18"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.83","percent_visits_covid":"1.96","percent_visits_influenza":"0.78","percent_visits_rsv":"0.17","week_end":"2023-02-25"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.96","percent_visits_covid":"1.3","percent_visits_influenza":"0.66","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.37","percent_visits_covid":"1.2","percent_visits_influenza":"0.9","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.2","percent_visits_influenza":"0.71","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.5","percent_visits_covid":"1.53","percent_visits_influenza":"0.87","percent_visits_rsv":"0.17","week_end":"2023-03-25"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.94","percent_visits_covid":"1.18","percent_visits_influenza":"1.73","percent_visits_rsv":"0.03","week_end":"2022-11-19"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.0","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"1.29","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.95","percent_visits_covid":"1.15","percent_visits_influenza":"0.8","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.65","percent_visits_rsv":"0.15","week_end":"2023-04-22"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.92","percent_visits_covid":"0.69","percent_visits_influenza":"1.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.68","percent_visits_covid":"0.84","percent_visits_influenza":"0.82","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.56","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.98","percent_visits_covid":"0.47","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-05-20"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.97","percent_visits_covid":"0.48","percent_visits_influenza":"0.38","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.54","percent_visits_covid":"0.72","percent_visits_influenza":"0.74","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.23","percent_visits_covid":"0.55","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.21","percent_visits_covid":"0.53","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.45","percent_visits_covid":"0.54","percent_visits_influenza":"0.84","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"0.85","percent_visits_influenza":"0.98","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.06","percent_visits_covid":"1.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.09","percent_visits_influenza":"0.85","percent_visits_rsv":"0.16","week_end":"2023-07-15"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.8","percent_visits_covid":"1.87","percent_visits_influenza":"0.81","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.27","percent_visits_covid":"2.44","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.05","percent_visits_covid":"3.19","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-05"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.65","percent_visits_covid":"3.62","percent_visits_influenza":"0.9","percent_visits_rsv":"0.23","week_end":"2023-08-12"}
-,{"county":"Leon","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.81","percent_visits_covid":"3.71","percent_visits_influenza":"1.01","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"5.1","percent_visits_influenza":"1.19","percent_visits_rsv":"0.35","week_end":"2023-08-26"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.8","percent_visits_covid":"4.3","percent_visits_influenza":"1.14","percent_visits_rsv":"0.45","week_end":"2023-09-02"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.08","percent_visits_covid":"3.34","percent_visits_influenza":"1.45","percent_visits_rsv":"0.37","week_end":"2023-09-09"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.03","percent_visits_covid":"2.73","percent_visits_influenza":"1.05","percent_visits_rsv":"0.36","week_end":"2023-09-16"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.94","percent_visits_covid":"1.88","percent_visits_influenza":"1.27","percent_visits_rsv":"0.84","week_end":"2023-09-23"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.46","percent_visits_covid":"1.72","percent_visits_influenza":"1.64","percent_visits_rsv":"1.19","week_end":"2023-09-30"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.44","percent_visits_covid":"0.98","percent_visits_influenza":"1.4","percent_visits_rsv":"1.09","week_end":"2023-10-07"}
-,{"county":"Leon","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.72","percent_visits_influenza":"2.13","percent_visits_rsv":"1.04","week_end":"2023-10-14"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.56","percent_visits_covid":"0.89","percent_visits_influenza":"2.47","percent_visits_rsv":"1.28","week_end":"2023-10-21"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.93","percent_visits_covid":"1.07","percent_visits_influenza":"2.62","percent_visits_rsv":"1.41","week_end":"2023-10-28"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.0","percent_visits_covid":"0.76","percent_visits_influenza":"2.75","percent_visits_rsv":"1.58","week_end":"2023-11-04"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.12","percent_visits_covid":"0.84","percent_visits_influenza":"3.96","percent_visits_rsv":"1.46","week_end":"2023-11-11"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.29","percent_visits_covid":"1.15","percent_visits_influenza":"4.01","percent_visits_rsv":"0.16","week_end":"2022-11-26"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.87","percent_visits_covid":"0.87","percent_visits_influenza":"4.92","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.97","percent_visits_covid":"0.95","percent_visits_influenza":"4.34","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Leon","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.93","percent_visits_covid":"0.66","percent_visits_influenza":"4.54","percent_visits_rsv":"0.88","week_end":"2023-12-02"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Levy","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"4.68","percent_visits_covid":"1.78","percent_visits_influenza":"2.85","percent_visits_rsv":"0.15","week_end":"2022-12-03"}
-,{"county":"Levy","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Levy","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.01","percent_visits_covid":"0.54","percent_visits_influenza":"1.35","percent_visits_rsv":"0.12","week_end":"2022-10-01"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.02","percent_visits_covid":"0.37","percent_visits_influenza":"1.57","percent_visits_rsv":"0.08","week_end":"2022-10-08"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.71","percent_visits_rsv":"0.1","week_end":"2022-10-15"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.36","percent_visits_influenza":"3.32","percent_visits_rsv":"0.18","week_end":"2022-10-22"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.16","percent_visits_covid":"0.45","percent_visits_influenza":"6.55","percent_visits_rsv":"0.25","week_end":"2022-10-29"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.71","percent_visits_covid":"0.38","percent_visits_influenza":"7.2","percent_visits_rsv":"0.27","week_end":"2022-11-05"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"0.47","percent_visits_influenza":"5.93","percent_visits_rsv":"0.11","week_end":"2022-11-12"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.14","percent_visits_covid":"0.51","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-11-19"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.18","percent_visits_covid":"0.79","percent_visits_influenza":"3.33","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.95","percent_visits_covid":"0.73","percent_visits_influenza":"3.09","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.75","percent_visits_covid":"1.36","percent_visits_influenza":"2.29","percent_visits_rsv":"0.23","week_end":"2022-12-10"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.15","percent_visits_covid":"1.56","percent_visits_influenza":"2.35","percent_visits_rsv":"0.38","week_end":"2022-12-17"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.24","percent_visits_covid":"2.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.33","week_end":"2022-12-24"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.71","percent_visits_influenza":"1.92","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.76","percent_visits_covid":"2.86","percent_visits_influenza":"1.71","percent_visits_rsv":"0.23","week_end":"2023-01-07"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.12","percent_visits_covid":"3.63","percent_visits_influenza":"1.45","percent_visits_rsv":"0.18","week_end":"2023-01-14"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.85","percent_visits_influenza":"1.62","percent_visits_rsv":"0.23","week_end":"2023-01-21"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.63","percent_visits_covid":"3.24","percent_visits_influenza":"1.14","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.71","percent_visits_covid":"2.49","percent_visits_influenza":"1.1","percent_visits_rsv":"0.16","week_end":"2023-02-04"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.04","percent_visits_covid":"2.3","percent_visits_influenza":"1.48","percent_visits_rsv":"0.32","week_end":"2023-02-11"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.0","percent_visits_covid":"2.84","percent_visits_influenza":"1.01","percent_visits_rsv":"0.24","week_end":"2023-02-18"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.83","percent_visits_covid":"1.96","percent_visits_influenza":"0.78","percent_visits_rsv":"0.17","week_end":"2023-02-25"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.96","percent_visits_covid":"1.3","percent_visits_influenza":"0.66","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.37","percent_visits_covid":"1.2","percent_visits_influenza":"0.9","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.2","percent_visits_influenza":"0.71","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.5","percent_visits_covid":"1.53","percent_visits_influenza":"0.87","percent_visits_rsv":"0.17","week_end":"2023-03-25"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.0","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"1.29","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.95","percent_visits_covid":"1.15","percent_visits_influenza":"0.8","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.65","percent_visits_rsv":"0.15","week_end":"2023-04-22"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.92","percent_visits_covid":"0.69","percent_visits_influenza":"1.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.68","percent_visits_covid":"0.84","percent_visits_influenza":"0.82","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.56","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.98","percent_visits_covid":"0.47","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-05-20"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.97","percent_visits_covid":"0.48","percent_visits_influenza":"0.38","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.54","percent_visits_covid":"0.72","percent_visits_influenza":"0.74","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.23","percent_visits_covid":"0.55","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.21","percent_visits_covid":"0.53","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.45","percent_visits_covid":"0.54","percent_visits_influenza":"0.84","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"0.85","percent_visits_influenza":"0.98","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.06","percent_visits_covid":"1.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.09","percent_visits_influenza":"0.85","percent_visits_rsv":"0.16","week_end":"2023-07-15"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.8","percent_visits_covid":"1.87","percent_visits_influenza":"0.81","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.27","percent_visits_covid":"2.44","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.05","percent_visits_covid":"3.19","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-05"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.65","percent_visits_covid":"3.62","percent_visits_influenza":"0.9","percent_visits_rsv":"0.23","week_end":"2023-08-12"}
-,{"county":"Liberty","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.81","percent_visits_covid":"3.71","percent_visits_influenza":"1.01","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"5.1","percent_visits_influenza":"1.19","percent_visits_rsv":"0.35","week_end":"2023-08-26"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.8","percent_visits_covid":"4.3","percent_visits_influenza":"1.14","percent_visits_rsv":"0.45","week_end":"2023-09-02"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.08","percent_visits_covid":"3.34","percent_visits_influenza":"1.45","percent_visits_rsv":"0.37","week_end":"2023-09-09"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.03","percent_visits_covid":"2.73","percent_visits_influenza":"1.05","percent_visits_rsv":"0.36","week_end":"2023-09-16"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.94","percent_visits_covid":"1.88","percent_visits_influenza":"1.27","percent_visits_rsv":"0.84","week_end":"2023-09-23"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.46","percent_visits_covid":"1.72","percent_visits_influenza":"1.64","percent_visits_rsv":"1.19","week_end":"2023-09-30"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.44","percent_visits_covid":"0.98","percent_visits_influenza":"1.4","percent_visits_rsv":"1.09","week_end":"2023-10-07"}
-,{"county":"Liberty","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.72","percent_visits_influenza":"2.13","percent_visits_rsv":"1.04","week_end":"2023-10-14"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.56","percent_visits_covid":"0.89","percent_visits_influenza":"2.47","percent_visits_rsv":"1.28","week_end":"2023-10-21"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.93","percent_visits_covid":"1.07","percent_visits_influenza":"2.62","percent_visits_rsv":"1.41","week_end":"2023-10-28"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.0","percent_visits_covid":"0.76","percent_visits_influenza":"2.75","percent_visits_rsv":"1.58","week_end":"2023-11-04"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.12","percent_visits_covid":"0.84","percent_visits_influenza":"3.96","percent_visits_rsv":"1.46","week_end":"2023-11-11"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.87","percent_visits_covid":"0.87","percent_visits_influenza":"4.92","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.97","percent_visits_covid":"0.95","percent_visits_influenza":"4.34","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Liberty","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.93","percent_visits_covid":"0.66","percent_visits_influenza":"4.54","percent_visits_rsv":"0.88","week_end":"2023-12-02"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.19","percent_visits_covid":"1.71","percent_visits_influenza":"3.36","percent_visits_rsv":"0.15","week_end":"2022-12-10"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.01","percent_visits_covid":"0.54","percent_visits_influenza":"1.35","percent_visits_rsv":"0.12","week_end":"2022-10-01"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.02","percent_visits_covid":"0.37","percent_visits_influenza":"1.57","percent_visits_rsv":"0.08","week_end":"2022-10-08"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.71","percent_visits_rsv":"0.1","week_end":"2022-10-15"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.36","percent_visits_influenza":"3.32","percent_visits_rsv":"0.18","week_end":"2022-10-22"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.16","percent_visits_covid":"0.45","percent_visits_influenza":"6.55","percent_visits_rsv":"0.25","week_end":"2022-10-29"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.71","percent_visits_covid":"0.38","percent_visits_influenza":"7.2","percent_visits_rsv":"0.27","week_end":"2022-11-05"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"0.47","percent_visits_influenza":"5.93","percent_visits_rsv":"0.11","week_end":"2022-11-12"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.14","percent_visits_covid":"0.51","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-11-19"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.18","percent_visits_covid":"0.79","percent_visits_influenza":"3.33","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.95","percent_visits_covid":"0.73","percent_visits_influenza":"3.09","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.75","percent_visits_covid":"1.36","percent_visits_influenza":"2.29","percent_visits_rsv":"0.23","week_end":"2022-12-10"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.15","percent_visits_covid":"1.56","percent_visits_influenza":"2.35","percent_visits_rsv":"0.38","week_end":"2022-12-17"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.24","percent_visits_covid":"2.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.33","week_end":"2022-12-24"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.71","percent_visits_influenza":"1.92","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.76","percent_visits_covid":"2.86","percent_visits_influenza":"1.71","percent_visits_rsv":"0.23","week_end":"2023-01-07"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.12","percent_visits_covid":"3.63","percent_visits_influenza":"1.45","percent_visits_rsv":"0.18","week_end":"2023-01-14"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.85","percent_visits_influenza":"1.62","percent_visits_rsv":"0.23","week_end":"2023-01-21"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.63","percent_visits_covid":"3.24","percent_visits_influenza":"1.14","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.71","percent_visits_covid":"2.49","percent_visits_influenza":"1.1","percent_visits_rsv":"0.16","week_end":"2023-02-04"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.04","percent_visits_covid":"2.3","percent_visits_influenza":"1.48","percent_visits_rsv":"0.32","week_end":"2023-02-11"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.0","percent_visits_covid":"2.84","percent_visits_influenza":"1.01","percent_visits_rsv":"0.24","week_end":"2023-02-18"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.83","percent_visits_covid":"1.96","percent_visits_influenza":"0.78","percent_visits_rsv":"0.17","week_end":"2023-02-25"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.96","percent_visits_covid":"1.3","percent_visits_influenza":"0.66","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.37","percent_visits_covid":"1.2","percent_visits_influenza":"0.9","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.2","percent_visits_influenza":"0.71","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.5","percent_visits_covid":"1.53","percent_visits_influenza":"0.87","percent_visits_rsv":"0.17","week_end":"2023-03-25"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.0","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"1.29","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.95","percent_visits_covid":"1.15","percent_visits_influenza":"0.8","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.65","percent_visits_rsv":"0.15","week_end":"2023-04-22"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.92","percent_visits_covid":"0.69","percent_visits_influenza":"1.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.68","percent_visits_covid":"0.84","percent_visits_influenza":"0.82","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.56","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"6.72","percent_visits_covid":"1.99","percent_visits_influenza":"4.67","percent_visits_rsv":"0.12","week_end":"2022-12-17"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.98","percent_visits_covid":"0.47","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-05-20"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.97","percent_visits_covid":"0.48","percent_visits_influenza":"0.38","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.54","percent_visits_covid":"0.72","percent_visits_influenza":"0.74","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.23","percent_visits_covid":"0.55","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.21","percent_visits_covid":"0.53","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.45","percent_visits_covid":"0.54","percent_visits_influenza":"0.84","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"0.85","percent_visits_influenza":"0.98","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.06","percent_visits_covid":"1.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.09","percent_visits_influenza":"0.85","percent_visits_rsv":"0.16","week_end":"2023-07-15"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.8","percent_visits_covid":"1.87","percent_visits_influenza":"0.81","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.27","percent_visits_covid":"2.44","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.05","percent_visits_covid":"3.19","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-05"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.65","percent_visits_covid":"3.62","percent_visits_influenza":"0.9","percent_visits_rsv":"0.23","week_end":"2023-08-12"}
-,{"county":"Madison","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.81","percent_visits_covid":"3.71","percent_visits_influenza":"1.01","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"5.1","percent_visits_influenza":"1.19","percent_visits_rsv":"0.35","week_end":"2023-08-26"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.8","percent_visits_covid":"4.3","percent_visits_influenza":"1.14","percent_visits_rsv":"0.45","week_end":"2023-09-02"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.08","percent_visits_covid":"3.34","percent_visits_influenza":"1.45","percent_visits_rsv":"0.37","week_end":"2023-09-09"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.03","percent_visits_covid":"2.73","percent_visits_influenza":"1.05","percent_visits_rsv":"0.36","week_end":"2023-09-16"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.94","percent_visits_covid":"1.88","percent_visits_influenza":"1.27","percent_visits_rsv":"0.84","week_end":"2023-09-23"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.46","percent_visits_covid":"1.72","percent_visits_influenza":"1.64","percent_visits_rsv":"1.19","week_end":"2023-09-30"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.44","percent_visits_covid":"0.98","percent_visits_influenza":"1.4","percent_visits_rsv":"1.09","week_end":"2023-10-07"}
-,{"county":"Madison","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.72","percent_visits_influenza":"2.13","percent_visits_rsv":"1.04","week_end":"2023-10-14"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.56","percent_visits_covid":"0.89","percent_visits_influenza":"2.47","percent_visits_rsv":"1.28","week_end":"2023-10-21"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.93","percent_visits_covid":"1.07","percent_visits_influenza":"2.62","percent_visits_rsv":"1.41","week_end":"2023-10-28"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.0","percent_visits_covid":"0.76","percent_visits_influenza":"2.75","percent_visits_rsv":"1.58","week_end":"2023-11-04"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.12","percent_visits_covid":"0.84","percent_visits_influenza":"3.96","percent_visits_rsv":"1.46","week_end":"2023-11-11"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.87","percent_visits_covid":"0.87","percent_visits_influenza":"4.92","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.97","percent_visits_covid":"0.95","percent_visits_influenza":"4.34","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Madison","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.93","percent_visits_covid":"0.66","percent_visits_influenza":"4.54","percent_visits_rsv":"0.88","week_end":"2023-12-02"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.84","percent_visits_covid":"1.84","percent_visits_influenza":"0.52","percent_visits_rsv":"0.48","week_end":"2022-10-01"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.95","percent_visits_covid":"1.26","percent_visits_influenza":"0.34","percent_visits_rsv":"0.38","week_end":"2022-10-08"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.81","percent_visits_covid":"1.19","percent_visits_influenza":"0.26","percent_visits_rsv":"0.4","week_end":"2022-10-15"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.2","percent_visits_covid":"1.0","percent_visits_influenza":"0.73","percent_visits_rsv":"0.5","week_end":"2022-10-22"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.78","percent_visits_covid":"1.76","percent_visits_influenza":"0.86","percent_visits_rsv":"0.19","week_end":"2022-10-29"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.58","percent_visits_covid":"1.26","percent_visits_influenza":"1.16","percent_visits_rsv":"0.16","week_end":"2022-11-05"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.44","percent_visits_covid":"1.46","percent_visits_influenza":"1.66","percent_visits_rsv":"0.38","week_end":"2022-11-12"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.44","percent_visits_covid":"2.56","percent_visits_influenza":"0.75","percent_visits_rsv":"0.15","week_end":"2023-02-18"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.38","percent_visits_covid":"1.76","percent_visits_influenza":"0.62","percent_visits_rsv":"0.09","week_end":"2023-02-25"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.5","percent_visits_covid":"1.91","percent_visits_influenza":"0.53","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.37","percent_visits_covid":"1.88","percent_visits_influenza":"0.4","percent_visits_rsv":"0.09","week_end":"2023-03-11"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.23","percent_visits_covid":"1.73","percent_visits_influenza":"0.46","percent_visits_rsv":"0.06","week_end":"2023-03-18"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.85","percent_visits_covid":"1.64","percent_visits_influenza":"0.15","percent_visits_rsv":"0.09","week_end":"2023-03-25"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.83","percent_visits_covid":"1.56","percent_visits_influenza":"0.24","percent_visits_rsv":"0.03","week_end":"2023-04-01"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.25","percent_visits_covid":"1.85","percent_visits_influenza":"0.41","percent_visits_rsv":"0.0","week_end":"2023-04-08"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.2","percent_visits_covid":"1.46","percent_visits_influenza":"0.64","percent_visits_rsv":"0.09","week_end":"2023-04-15"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.23","percent_visits_covid":"0.72","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-04-22"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.76","percent_visits_covid":"1.17","percent_visits_influenza":"0.52","percent_visits_rsv":"0.06","week_end":"2023-04-29"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.38","percent_visits_covid":"1.03","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.41","percent_visits_covid":"0.77","percent_visits_influenza":"0.52","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.53","percent_visits_covid":"0.86","percent_visits_influenza":"0.64","percent_visits_rsv":"0.03","week_end":"2023-05-20"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.07","percent_visits_covid":"0.57","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.59","percent_visits_covid":"0.98","percent_visits_influenza":"0.57","percent_visits_rsv":"0.03","week_end":"2023-06-03"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.68","percent_visits_covid":"0.98","percent_visits_influenza":"0.7","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.45","percent_visits_covid":"0.95","percent_visits_influenza":"0.5","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.57","percent_visits_covid":"0.83","percent_visits_influenza":"0.74","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.06","percent_visits_covid":"1.26","percent_visits_influenza":"0.77","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.41","percent_visits_covid":"0.95","percent_visits_influenza":"0.49","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.59","percent_visits_covid":"1.08","percent_visits_influenza":"0.54","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"1.43","percent_visits_covid":"1.07","percent_visits_influenza":"0.32","percent_visits_rsv":"0.06","week_end":"2023-07-22"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.32","percent_visits_covid":"1.61","percent_visits_influenza":"0.68","percent_visits_rsv":"0.06","week_end":"2023-07-29"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.98","percent_visits_covid":"2.57","percent_visits_influenza":"0.47","percent_visits_rsv":"0.0","week_end":"2023-08-05"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.34","percent_visits_covid":"2.79","percent_visits_influenza":"0.52","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.74","percent_visits_covid":"2.91","percent_visits_influenza":"0.74","percent_visits_rsv":"0.15","week_end":"2023-08-19"}
-,{"county":"Manatee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"4.96","percent_visits_covid":"4.48","percent_visits_influenza":"0.45","percent_visits_rsv":"0.12","week_end":"2023-08-26"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.43","percent_visits_covid":"4.5","percent_visits_influenza":"0.78","percent_visits_rsv":"0.22","week_end":"2023-09-02"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"4.21","percent_visits_covid":"3.4","percent_visits_influenza":"0.48","percent_visits_rsv":"0.36","week_end":"2023-09-09"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.63","percent_visits_covid":"2.58","percent_visits_influenza":"0.63","percent_visits_rsv":"0.42","week_end":"2023-09-16"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"2.79","percent_visits_covid":"1.87","percent_visits_influenza":"0.77","percent_visits_rsv":"0.21","week_end":"2023-09-23"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.04","percent_visits_covid":"1.44","percent_visits_influenza":"1.35","percent_visits_rsv":"0.31","week_end":"2023-09-30"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.52","percent_visits_covid":"1.4","percent_visits_influenza":"1.61","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.34","percent_visits_covid":"1.34","percent_visits_influenza":"1.58","percent_visits_rsv":"0.52","week_end":"2023-10-14"}
-,{"county":"Manatee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"3.7","percent_visits_covid":"1.18","percent_visits_influenza":"2.13","percent_visits_rsv":"0.38","week_end":"2023-10-21"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"4.54","percent_visits_covid":"1.11","percent_visits_influenza":"2.78","percent_visits_rsv":"0.71","week_end":"2023-10-28"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.2","percent_visits_covid":"0.92","percent_visits_influenza":"3.25","percent_visits_rsv":"1.06","week_end":"2023-11-04"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.77","percent_visits_covid":"1.06","percent_visits_influenza":"4.06","percent_visits_rsv":"0.77","week_end":"2023-11-11"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.86","percent_visits_covid":"1.06","percent_visits_influenza":"4.06","percent_visits_rsv":"0.83","week_end":"2023-11-18"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.46","percent_visits_covid":"0.99","percent_visits_influenza":"3.81","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Manatee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Manatee, FL","hsa_counties":"Manatee","percent_visits_combined":"5.15","percent_visits_covid":"1.18","percent_visits_influenza":"3.65","percent_visits_rsv":"0.32","week_end":"2023-12-02"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.92","percent_visits_covid":"1.32","percent_visits_influenza":"1.34","percent_visits_rsv":"0.27","week_end":"2022-10-01"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.81","percent_visits_covid":"0.86","percent_visits_influenza":"0.83","percent_visits_rsv":"0.13","week_end":"2022-10-08"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.93","percent_visits_covid":"0.83","percent_visits_influenza":"0.95","percent_visits_rsv":"0.16","week_end":"2022-10-15"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.36","percent_visits_covid":"0.97","percent_visits_influenza":"1.29","percent_visits_rsv":"0.12","week_end":"2022-10-22"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.95","percent_visits_covid":"0.77","percent_visits_influenza":"1.92","percent_visits_rsv":"0.29","week_end":"2022-10-29"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.43","percent_visits_covid":"0.83","percent_visits_influenza":"2.36","percent_visits_rsv":"0.28","week_end":"2022-11-05"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.82","percent_visits_covid":"0.81","percent_visits_influenza":"2.72","percent_visits_rsv":"0.3","week_end":"2022-11-12"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.81","percent_visits_covid":"0.99","percent_visits_influenza":"2.6","percent_visits_rsv":"0.26","week_end":"2022-11-19"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.02","percent_visits_covid":"1.12","percent_visits_influenza":"2.61","percent_visits_rsv":"0.29","week_end":"2022-11-26"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.16","percent_visits_covid":"1.35","percent_visits_influenza":"2.7","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.6","percent_visits_covid":"1.4","percent_visits_influenza":"2.1","percent_visits_rsv":"0.12","week_end":"2022-12-10"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.83","percent_visits_covid":"1.54","percent_visits_influenza":"2.27","percent_visits_rsv":"0.07","week_end":"2022-12-17"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.35","percent_visits_covid":"1.7","percent_visits_influenza":"2.54","percent_visits_rsv":"0.14","week_end":"2022-12-24"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.64","percent_visits_covid":"2.5","percent_visits_influenza":"2.07","percent_visits_rsv":"0.09","week_end":"2022-12-31"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.4","percent_visits_covid":"2.65","percent_visits_influenza":"1.71","percent_visits_rsv":"0.07","week_end":"2023-01-07"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.18","percent_visits_covid":"2.31","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-01-14"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.07","percent_visits_covid":"1.96","percent_visits_influenza":"1.12","percent_visits_rsv":"0.01","week_end":"2023-01-21"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.22","percent_visits_covid":"1.94","percent_visits_influenza":"1.29","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.41","percent_visits_covid":"1.59","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-02-04"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.49","percent_visits_covid":"1.69","percent_visits_influenza":"0.75","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.83","percent_visits_covid":"1.36","percent_visits_influenza":"0.45","percent_visits_rsv":"0.04","week_end":"2023-02-18"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.0","percent_visits_covid":"1.36","percent_visits_influenza":"0.65","percent_visits_rsv":"0.01","week_end":"2023-02-25"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.71","percent_visits_covid":"1.2","percent_visits_influenza":"0.48","percent_visits_rsv":"0.04","week_end":"2023-03-04"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.33","percent_visits_covid":"1.13","percent_visits_influenza":"0.19","percent_visits_rsv":"0.01","week_end":"2023-03-11"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.49","percent_visits_covid":"1.07","percent_visits_influenza":"0.38","percent_visits_rsv":"0.04","week_end":"2023-03-18"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.47","percent_visits_covid":"1.01","percent_visits_influenza":"0.43","percent_visits_rsv":"0.04","week_end":"2023-03-25"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.48","percent_visits_covid":"1.17","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.02","percent_visits_covid":"0.81","percent_visits_influenza":"0.2","percent_visits_rsv":"0.01","week_end":"2023-04-08"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.12","percent_visits_covid":"0.76","percent_visits_influenza":"0.36","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.09","percent_visits_covid":"0.79","percent_visits_influenza":"0.3","percent_visits_rsv":"0.0","week_end":"2023-04-22"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"0.77","percent_visits_covid":"0.48","percent_visits_influenza":"0.28","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"0.84","percent_visits_covid":"0.48","percent_visits_influenza":"0.3","percent_visits_rsv":"0.06","week_end":"2023-05-06"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"0.8","percent_visits_covid":"0.43","percent_visits_influenza":"0.36","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.14","percent_visits_covid":"0.73","percent_visits_influenza":"0.4","percent_visits_rsv":"0.01","week_end":"2023-05-20"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"0.94","percent_visits_covid":"0.61","percent_visits_influenza":"0.32","percent_visits_rsv":"0.01","week_end":"2023-05-27"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.18","percent_visits_covid":"0.8","percent_visits_influenza":"0.35","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.17","percent_visits_covid":"0.84","percent_visits_influenza":"0.31","percent_visits_rsv":"0.01","week_end":"2023-06-10"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.38","percent_visits_covid":"0.88","percent_visits_influenza":"0.48","percent_visits_rsv":"0.03","week_end":"2023-06-17"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.13","percent_visits_covid":"0.83","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.86","percent_visits_covid":"1.23","percent_visits_influenza":"0.62","percent_visits_rsv":"0.04","week_end":"2023-07-01"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"1.6","percent_visits_covid":"1.06","percent_visits_influenza":"0.56","percent_visits_rsv":"0.02","week_end":"2023-07-08"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.09","percent_visits_covid":"1.61","percent_visits_influenza":"0.48","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.64","percent_visits_covid":"2.13","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.28","percent_visits_covid":"1.82","percent_visits_influenza":"0.46","percent_visits_rsv":"0.01","week_end":"2023-07-29"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.82","percent_visits_covid":"2.38","percent_visits_influenza":"0.39","percent_visits_rsv":"0.04","week_end":"2023-08-05"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.72","percent_visits_covid":"3.41","percent_visits_influenza":"0.35","percent_visits_rsv":"0.0","week_end":"2023-08-12"}
-,{"county":"Marion","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.4","percent_visits_covid":"3.05","percent_visits_influenza":"0.33","percent_visits_rsv":"0.03","week_end":"2023-08-19"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"5.0","percent_visits_covid":"4.48","percent_visits_influenza":"0.48","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.95","percent_visits_covid":"4.28","percent_visits_influenza":"0.52","percent_visits_rsv":"0.2","week_end":"2023-09-02"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.46","percent_visits_covid":"2.89","percent_visits_influenza":"0.44","percent_visits_rsv":"0.17","week_end":"2023-09-09"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.67","percent_visits_covid":"2.15","percent_visits_influenza":"0.38","percent_visits_rsv":"0.14","week_end":"2023-09-16"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.53","percent_visits_covid":"1.62","percent_visits_influenza":"0.6","percent_visits_rsv":"0.34","week_end":"2023-09-23"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.27","percent_visits_covid":"1.21","percent_visits_influenza":"0.72","percent_visits_rsv":"0.33","week_end":"2023-09-30"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.51","percent_visits_covid":"0.95","percent_visits_influenza":"1.2","percent_visits_rsv":"0.39","week_end":"2023-10-07"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"2.94","percent_visits_covid":"0.91","percent_visits_influenza":"1.56","percent_visits_rsv":"0.54","week_end":"2023-10-14"}
-,{"county":"Marion","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.05","percent_visits_covid":"0.81","percent_visits_influenza":"1.7","percent_visits_rsv":"0.57","week_end":"2023-10-21"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.11","percent_visits_covid":"0.87","percent_visits_influenza":"1.71","percent_visits_rsv":"0.56","week_end":"2023-10-28"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"3.74","percent_visits_covid":"0.72","percent_visits_influenza":"2.49","percent_visits_rsv":"0.53","week_end":"2023-11-04"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"4.16","percent_visits_covid":"0.6","percent_visits_influenza":"3.08","percent_visits_rsv":"0.5","week_end":"2023-11-11"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"5.13","percent_visits_covid":"0.7","percent_visits_influenza":"4.05","percent_visits_rsv":"0.44","week_end":"2023-11-18"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"5.9","percent_visits_covid":"0.92","percent_visits_influenza":"4.54","percent_visits_rsv":"0.57","week_end":"2023-11-25"}
-,{"county":"Marion","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Marion (Ocala), FL - Citrus, FL","hsa_counties":"Citrus, Marion","percent_visits_combined":"5.26","percent_visits_covid":"0.84","percent_visits_influenza":"4.07","percent_visits_rsv":"0.43","week_end":"2023-12-02"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.0","percent_visits_covid":"1.81","percent_visits_influenza":"0.47","percent_visits_rsv":"0.73","week_end":"2022-10-01"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.36","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.61","week_end":"2022-10-08"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.46","percent_visits_covid":"1.28","percent_visits_influenza":"0.58","percent_visits_rsv":"0.63","week_end":"2022-10-15"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.42","percent_visits_covid":"1.14","percent_visits_influenza":"0.69","percent_visits_rsv":"0.6","week_end":"2022-10-22"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.95","percent_visits_covid":"1.29","percent_visits_influenza":"0.96","percent_visits_rsv":"0.73","week_end":"2022-10-29"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.38","percent_visits_covid":"1.39","percent_visits_influenza":"1.31","percent_visits_rsv":"0.71","week_end":"2022-11-05"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.68","percent_visits_covid":"1.32","percent_visits_influenza":"1.75","percent_visits_rsv":"0.64","week_end":"2022-11-12"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.18","percent_visits_covid":"1.34","percent_visits_influenza":"1.4","percent_visits_rsv":"0.46","week_end":"2022-11-19"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.72","percent_visits_covid":"1.54","percent_visits_influenza":"1.86","percent_visits_rsv":"0.38","week_end":"2022-11-26"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.7","percent_visits_covid":"2.21","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2022-12-03"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.29","percent_visits_covid":"2.3","percent_visits_influenza":"2.8","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"6.35","percent_visits_covid":"2.53","percent_visits_influenza":"3.75","percent_visits_rsv":"0.2","week_end":"2022-12-17"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"6.77","percent_visits_covid":"3.0","percent_visits_influenza":"3.7","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"7.3","percent_visits_covid":"4.09","percent_visits_influenza":"3.12","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.91","percent_visits_covid":"3.62","percent_visits_influenza":"2.24","percent_visits_rsv":"0.16","week_end":"2023-01-07"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.82","percent_visits_covid":"3.12","percent_visits_influenza":"1.6","percent_visits_rsv":"0.15","week_end":"2023-01-14"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.57","percent_visits_covid":"2.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.18","week_end":"2023-01-21"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.21","percent_visits_covid":"2.86","percent_visits_influenza":"1.24","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.72","percent_visits_covid":"2.42","percent_visits_influenza":"1.15","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.13","percent_visits_covid":"2.19","percent_visits_influenza":"0.84","percent_visits_rsv":"0.13","week_end":"2023-02-11"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.74","percent_visits_covid":"1.96","percent_visits_influenza":"0.74","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.52","percent_visits_covid":"1.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.3","percent_visits_covid":"1.49","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-03-04"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.04","percent_visits_covid":"1.38","percent_visits_influenza":"0.62","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.77","percent_visits_covid":"1.15","percent_visits_influenza":"0.56","percent_visits_rsv":"0.09","week_end":"2023-03-18"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.24","percent_visits_influenza":"0.56","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.6","percent_visits_covid":"1.13","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.06","percent_visits_covid":"1.35","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.12","percent_visits_influenza":"0.63","percent_visits_rsv":"0.09","week_end":"2023-04-15"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.93","percent_visits_covid":"1.29","percent_visits_influenza":"0.61","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.72","percent_visits_covid":"1.05","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.69","percent_visits_rsv":"0.1","week_end":"2023-04-29"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.98","percent_visits_covid":"1.08","percent_visits_influenza":"0.84","percent_visits_rsv":"0.07","week_end":"2023-05-06"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.87","percent_visits_covid":"1.04","percent_visits_influenza":"0.82","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.93","percent_visits_covid":"1.02","percent_visits_influenza":"0.84","percent_visits_rsv":"0.08","week_end":"2023-05-20"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.11","percent_visits_covid":"1.1","percent_visits_influenza":"0.95","percent_visits_rsv":"0.07","week_end":"2023-05-27"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.64","percent_visits_covid":"1.22","percent_visits_influenza":"1.31","percent_visits_rsv":"0.13","week_end":"2023-06-03"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.45","percent_visits_covid":"1.27","percent_visits_influenza":"1.02","percent_visits_rsv":"0.17","week_end":"2023-06-10"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.48","percent_visits_covid":"1.32","percent_visits_influenza":"1.05","percent_visits_rsv":"0.14","week_end":"2023-06-17"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.63","percent_visits_covid":"1.48","percent_visits_influenza":"1.07","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.51","percent_visits_covid":"1.31","percent_visits_influenza":"1.08","percent_visits_rsv":"0.13","week_end":"2023-07-01"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.77","percent_visits_covid":"1.63","percent_visits_influenza":"0.97","percent_visits_rsv":"0.19","week_end":"2023-07-08"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.66","percent_visits_covid":"1.81","percent_visits_influenza":"0.68","percent_visits_rsv":"0.21","week_end":"2023-07-15"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.16","percent_visits_covid":"2.36","percent_visits_influenza":"0.66","percent_visits_rsv":"0.17","week_end":"2023-07-22"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.55","percent_visits_covid":"2.73","percent_visits_influenza":"0.66","percent_visits_rsv":"0.19","week_end":"2023-07-29"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.12","percent_visits_covid":"3.27","percent_visits_influenza":"0.74","percent_visits_rsv":"0.2","week_end":"2023-08-05"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.78","percent_visits_covid":"3.97","percent_visits_influenza":"0.75","percent_visits_rsv":"0.12","week_end":"2023-08-12"}
-,{"county":"Martin","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.95","percent_visits_covid":"4.13","percent_visits_influenza":"0.68","percent_visits_rsv":"0.22","week_end":"2023-08-19"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.36","percent_visits_covid":"4.26","percent_visits_influenza":"0.81","percent_visits_rsv":"0.34","week_end":"2023-08-26"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.91","percent_visits_covid":"3.71","percent_visits_influenza":"0.91","percent_visits_rsv":"0.34","week_end":"2023-09-02"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.83","percent_visits_covid":"3.29","percent_visits_influenza":"1.19","percent_visits_rsv":"0.47","week_end":"2023-09-09"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.78","percent_visits_covid":"2.07","percent_visits_influenza":"1.34","percent_visits_rsv":"0.4","week_end":"2023-09-16"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.56","percent_visits_covid":"1.65","percent_visits_influenza":"1.51","percent_visits_rsv":"0.5","week_end":"2023-09-23"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.5","percent_visits_covid":"1.19","percent_visits_influenza":"1.73","percent_visits_rsv":"0.61","week_end":"2023-09-30"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.78","percent_visits_covid":"1.02","percent_visits_influenza":"2.08","percent_visits_rsv":"0.76","week_end":"2023-10-07"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.42","percent_visits_covid":"1.12","percent_visits_influenza":"2.45","percent_visits_rsv":"0.91","week_end":"2023-10-14"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.96","percent_visits_covid":"1.01","percent_visits_influenza":"3.2","percent_visits_rsv":"0.82","week_end":"2023-10-21"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.22","percent_visits_covid":"0.78","percent_visits_influenza":"3.65","percent_visits_rsv":"0.89","week_end":"2023-10-28"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.37","percent_visits_covid":"0.76","percent_visits_influenza":"3.98","percent_visits_rsv":"0.67","week_end":"2023-11-04"}
-,{"county":"Martin","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.06","percent_visits_covid":"0.65","percent_visits_influenza":"3.88","percent_visits_rsv":"0.58","week_end":"2023-11-11"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.11","percent_visits_covid":"0.7","percent_visits_influenza":"3.98","percent_visits_rsv":"0.49","week_end":"2023-11-18"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.07","percent_visits_covid":"0.72","percent_visits_influenza":"3.83","percent_visits_rsv":"0.59","week_end":"2023-11-25"}
-,{"county":"Martin","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.8","percent_visits_covid":"0.72","percent_visits_influenza":"2.62","percent_visits_rsv":"0.5","week_end":"2023-12-02"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.45","percent_visits_influenza":"0.71","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.98","percent_visits_covid":"1.1","percent_visits_influenza":"0.65","percent_visits_rsv":"0.24","week_end":"2022-10-08"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.14","percent_visits_covid":"1.15","percent_visits_influenza":"0.72","percent_visits_rsv":"0.27","week_end":"2022-10-15"}
-,{"county":"Miami-Dade","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.28","percent_visits_covid":"1.07","percent_visits_influenza":"0.93","percent_visits_rsv":"0.3","week_end":"2022-10-22"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.51","percent_visits_covid":"0.98","percent_visits_influenza":"1.18","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.92","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"0.33","week_end":"2022-11-05"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.28","percent_visits_covid":"1.15","percent_visits_influenza":"1.75","percent_visits_rsv":"0.41","week_end":"2022-11-12"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.33","percent_visits_covid":"1.27","percent_visits_influenza":"1.74","percent_visits_rsv":"0.35","week_end":"2022-11-19"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.31","percent_visits_covid":"1.66","percent_visits_influenza":"2.35","percent_visits_rsv":"0.35","week_end":"2022-11-26"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.74","percent_visits_covid":"2.16","percent_visits_influenza":"2.35","percent_visits_rsv":"0.28","week_end":"2022-12-03"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"5.46","percent_visits_covid":"2.41","percent_visits_influenza":"2.89","percent_visits_rsv":"0.21","week_end":"2022-12-10"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"6.38","percent_visits_covid":"2.82","percent_visits_influenza":"3.4","percent_visits_rsv":"0.24","week_end":"2022-12-17"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"7.03","percent_visits_covid":"3.12","percent_visits_influenza":"3.81","percent_visits_rsv":"0.22","week_end":"2022-12-24"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"7.24","percent_visits_covid":"3.73","percent_visits_influenza":"3.43","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"6.38","percent_visits_covid":"3.6","percent_visits_influenza":"2.69","percent_visits_rsv":"0.19","week_end":"2023-01-07"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.82","percent_visits_covid":"2.87","percent_visits_influenza":"1.91","percent_visits_rsv":"0.09","week_end":"2023-01-14"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.42","percent_visits_covid":"2.47","percent_visits_influenza":"1.91","percent_visits_rsv":"0.09","week_end":"2023-01-21"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.12","percent_visits_covid":"2.27","percent_visits_influenza":"1.83","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.5","percent_visits_covid":"1.94","percent_visits_influenza":"1.51","percent_visits_rsv":"0.07","week_end":"2023-02-04"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.91","percent_visits_covid":"1.64","percent_visits_influenza":"1.21","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.64","percent_visits_covid":"1.46","percent_visits_influenza":"1.13","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.37","percent_visits_influenza":"1.07","percent_visits_rsv":"0.05","week_end":"2023-02-25"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.26","percent_visits_covid":"1.3","percent_visits_influenza":"0.92","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.31","percent_visits_covid":"1.25","percent_visits_influenza":"1.03","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.22","percent_visits_covid":"1.2","percent_visits_influenza":"0.99","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.05","percent_visits_covid":"1.18","percent_visits_influenza":"0.84","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.06","percent_visits_covid":"1.16","percent_visits_influenza":"0.84","percent_visits_rsv":"0.07","week_end":"2023-04-01"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.89","percent_visits_covid":"1.02","percent_visits_influenza":"0.84","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Miami-Dade","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.94","percent_visits_covid":"1.0","percent_visits_influenza":"0.89","percent_visits_rsv":"0.06","week_end":"2023-04-15"}
-,{"county":"Miami-Dade","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.15","percent_visits_covid":"0.98","percent_visits_influenza":"1.12","percent_visits_rsv":"0.06","week_end":"2023-04-22"}
-,{"county":"Miami-Dade","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.36","percent_visits_covid":"1.14","percent_visits_influenza":"1.17","percent_visits_rsv":"0.07","week_end":"2023-04-29"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.21","percent_visits_covid":"0.99","percent_visits_influenza":"1.19","percent_visits_rsv":"0.05","week_end":"2023-05-06"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.06","percent_visits_influenza":"1.37","percent_visits_rsv":"0.05","week_end":"2023-05-13"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.74","percent_visits_covid":"1.12","percent_visits_influenza":"1.58","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.77","percent_visits_covid":"1.17","percent_visits_influenza":"1.56","percent_visits_rsv":"0.07","week_end":"2023-05-27"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.41","percent_visits_covid":"1.36","percent_visits_influenza":"1.96","percent_visits_rsv":"0.12","week_end":"2023-06-03"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.17","percent_visits_covid":"1.29","percent_visits_influenza":"1.79","percent_visits_rsv":"0.09","week_end":"2023-06-10"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.16","percent_visits_covid":"1.35","percent_visits_influenza":"1.7","percent_visits_rsv":"0.13","week_end":"2023-06-17"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.2","percent_visits_covid":"1.53","percent_visits_influenza":"1.59","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.23","percent_visits_covid":"1.66","percent_visits_influenza":"1.46","percent_visits_rsv":"0.14","week_end":"2023-07-01"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.35","percent_visits_covid":"1.99","percent_visits_influenza":"1.25","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.38","percent_visits_covid":"2.12","percent_visits_influenza":"1.17","percent_visits_rsv":"0.12","week_end":"2023-07-15"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.37","percent_visits_covid":"2.3","percent_visits_influenza":"0.96","percent_visits_rsv":"0.13","week_end":"2023-07-22"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.67","percent_visits_covid":"2.62","percent_visits_influenza":"0.94","percent_visits_rsv":"0.16","week_end":"2023-07-29"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.02","percent_visits_covid":"2.95","percent_visits_influenza":"0.96","percent_visits_rsv":"0.16","week_end":"2023-08-05"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.86","percent_visits_covid":"2.94","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-12"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.07","percent_visits_covid":"3.1","percent_visits_influenza":"0.82","percent_visits_rsv":"0.18","week_end":"2023-08-19"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.64","percent_visits_covid":"3.47","percent_visits_influenza":"1.02","percent_visits_rsv":"0.2","week_end":"2023-08-26"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.84","percent_visits_covid":"3.51","percent_visits_influenza":"1.14","percent_visits_rsv":"0.24","week_end":"2023-09-02"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.37","percent_visits_covid":"2.79","percent_visits_influenza":"1.36","percent_visits_rsv":"0.26","week_end":"2023-09-09"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.11","percent_visits_covid":"1.81","percent_visits_influenza":"1.14","percent_visits_rsv":"0.19","week_end":"2023-09-16"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.98","percent_visits_covid":"1.41","percent_visits_influenza":"1.29","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.97","percent_visits_covid":"1.1","percent_visits_influenza":"1.55","percent_visits_rsv":"0.37","week_end":"2023-09-30"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.06","percent_visits_covid":"0.99","percent_visits_influenza":"1.7","percent_visits_rsv":"0.39","week_end":"2023-10-07"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.32","percent_visits_covid":"0.79","percent_visits_influenza":"2.11","percent_visits_rsv":"0.44","week_end":"2023-10-14"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.89","percent_visits_covid":"0.69","percent_visits_influenza":"2.74","percent_visits_rsv":"0.49","week_end":"2023-10-21"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.27","percent_visits_covid":"0.69","percent_visits_influenza":"3.15","percent_visits_rsv":"0.47","week_end":"2023-10-28"}
-,{"county":"Miami-Dade","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.58","percent_visits_covid":"0.64","percent_visits_influenza":"3.48","percent_visits_rsv":"0.48","week_end":"2023-11-04"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.69","percent_visits_covid":"0.64","percent_visits_influenza":"3.66","percent_visits_rsv":"0.42","week_end":"2023-11-11"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.56","percent_visits_covid":"0.65","percent_visits_influenza":"3.61","percent_visits_rsv":"0.33","week_end":"2023-11-18"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.87","percent_visits_covid":"0.76","percent_visits_influenza":"3.78","percent_visits_rsv":"0.36","week_end":"2023-11-25"}
-,{"county":"Miami-Dade","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.51","percent_visits_covid":"0.99","percent_visits_influenza":"3.25","percent_visits_rsv":"0.32","week_end":"2023-12-02"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.45","percent_visits_influenza":"0.71","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.98","percent_visits_covid":"1.1","percent_visits_influenza":"0.65","percent_visits_rsv":"0.24","week_end":"2022-10-08"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.14","percent_visits_covid":"1.15","percent_visits_influenza":"0.72","percent_visits_rsv":"0.27","week_end":"2022-10-15"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.28","percent_visits_covid":"1.07","percent_visits_influenza":"0.93","percent_visits_rsv":"0.3","week_end":"2022-10-22"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.51","percent_visits_covid":"0.98","percent_visits_influenza":"1.18","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.92","percent_visits_covid":"1.11","percent_visits_influenza":"1.48","percent_visits_rsv":"0.33","week_end":"2022-11-05"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.28","percent_visits_covid":"1.15","percent_visits_influenza":"1.75","percent_visits_rsv":"0.41","week_end":"2022-11-12"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.33","percent_visits_covid":"1.27","percent_visits_influenza":"1.74","percent_visits_rsv":"0.35","week_end":"2022-11-19"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.31","percent_visits_covid":"1.66","percent_visits_influenza":"2.35","percent_visits_rsv":"0.35","week_end":"2022-11-26"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.74","percent_visits_covid":"2.16","percent_visits_influenza":"2.35","percent_visits_rsv":"0.28","week_end":"2022-12-03"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"5.46","percent_visits_covid":"2.41","percent_visits_influenza":"2.89","percent_visits_rsv":"0.21","week_end":"2022-12-10"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"6.38","percent_visits_covid":"2.82","percent_visits_influenza":"3.4","percent_visits_rsv":"0.24","week_end":"2022-12-17"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"7.03","percent_visits_covid":"3.12","percent_visits_influenza":"3.81","percent_visits_rsv":"0.22","week_end":"2022-12-24"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"7.24","percent_visits_covid":"3.73","percent_visits_influenza":"3.43","percent_visits_rsv":"0.17","week_end":"2022-12-31"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"6.38","percent_visits_covid":"3.6","percent_visits_influenza":"2.69","percent_visits_rsv":"0.19","week_end":"2023-01-07"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.82","percent_visits_covid":"2.87","percent_visits_influenza":"1.91","percent_visits_rsv":"0.09","week_end":"2023-01-14"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.42","percent_visits_covid":"2.47","percent_visits_influenza":"1.91","percent_visits_rsv":"0.09","week_end":"2023-01-21"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.12","percent_visits_covid":"2.27","percent_visits_influenza":"1.83","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.5","percent_visits_covid":"1.94","percent_visits_influenza":"1.51","percent_visits_rsv":"0.07","week_end":"2023-02-04"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.91","percent_visits_covid":"1.64","percent_visits_influenza":"1.21","percent_visits_rsv":"0.08","week_end":"2023-02-11"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.64","percent_visits_covid":"1.46","percent_visits_influenza":"1.13","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.37","percent_visits_influenza":"1.07","percent_visits_rsv":"0.05","week_end":"2023-02-25"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.26","percent_visits_covid":"1.3","percent_visits_influenza":"0.92","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.31","percent_visits_covid":"1.25","percent_visits_influenza":"1.03","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.22","percent_visits_covid":"1.2","percent_visits_influenza":"0.99","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.05","percent_visits_covid":"1.18","percent_visits_influenza":"0.84","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.06","percent_visits_covid":"1.16","percent_visits_influenza":"0.84","percent_visits_rsv":"0.07","week_end":"2023-04-01"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.89","percent_visits_covid":"1.02","percent_visits_influenza":"0.84","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"1.94","percent_visits_covid":"1.0","percent_visits_influenza":"0.89","percent_visits_rsv":"0.06","week_end":"2023-04-15"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.15","percent_visits_covid":"0.98","percent_visits_influenza":"1.12","percent_visits_rsv":"0.06","week_end":"2023-04-22"}
-,{"county":"Monroe","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.36","percent_visits_covid":"1.14","percent_visits_influenza":"1.17","percent_visits_rsv":"0.07","week_end":"2023-04-29"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.21","percent_visits_covid":"0.99","percent_visits_influenza":"1.19","percent_visits_rsv":"0.05","week_end":"2023-05-06"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.46","percent_visits_covid":"1.06","percent_visits_influenza":"1.37","percent_visits_rsv":"0.05","week_end":"2023-05-13"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.74","percent_visits_covid":"1.12","percent_visits_influenza":"1.58","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.77","percent_visits_covid":"1.17","percent_visits_influenza":"1.56","percent_visits_rsv":"0.07","week_end":"2023-05-27"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.41","percent_visits_covid":"1.36","percent_visits_influenza":"1.96","percent_visits_rsv":"0.12","week_end":"2023-06-03"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.17","percent_visits_covid":"1.29","percent_visits_influenza":"1.79","percent_visits_rsv":"0.09","week_end":"2023-06-10"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.16","percent_visits_covid":"1.35","percent_visits_influenza":"1.7","percent_visits_rsv":"0.13","week_end":"2023-06-17"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.2","percent_visits_covid":"1.53","percent_visits_influenza":"1.59","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.23","percent_visits_covid":"1.66","percent_visits_influenza":"1.46","percent_visits_rsv":"0.14","week_end":"2023-07-01"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.35","percent_visits_covid":"1.99","percent_visits_influenza":"1.25","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.38","percent_visits_covid":"2.12","percent_visits_influenza":"1.17","percent_visits_rsv":"0.12","week_end":"2023-07-15"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.37","percent_visits_covid":"2.3","percent_visits_influenza":"0.96","percent_visits_rsv":"0.13","week_end":"2023-07-22"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.67","percent_visits_covid":"2.62","percent_visits_influenza":"0.94","percent_visits_rsv":"0.16","week_end":"2023-07-29"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.02","percent_visits_covid":"2.95","percent_visits_influenza":"0.96","percent_visits_rsv":"0.16","week_end":"2023-08-05"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.86","percent_visits_covid":"2.94","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-12"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.07","percent_visits_covid":"3.1","percent_visits_influenza":"0.82","percent_visits_rsv":"0.18","week_end":"2023-08-19"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.64","percent_visits_covid":"3.47","percent_visits_influenza":"1.02","percent_visits_rsv":"0.2","week_end":"2023-08-26"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.84","percent_visits_covid":"3.51","percent_visits_influenza":"1.14","percent_visits_rsv":"0.24","week_end":"2023-09-02"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.37","percent_visits_covid":"2.79","percent_visits_influenza":"1.36","percent_visits_rsv":"0.26","week_end":"2023-09-09"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.11","percent_visits_covid":"1.81","percent_visits_influenza":"1.14","percent_visits_rsv":"0.19","week_end":"2023-09-16"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.98","percent_visits_covid":"1.41","percent_visits_influenza":"1.29","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"2.97","percent_visits_covid":"1.1","percent_visits_influenza":"1.55","percent_visits_rsv":"0.37","week_end":"2023-09-30"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.06","percent_visits_covid":"0.99","percent_visits_influenza":"1.7","percent_visits_rsv":"0.39","week_end":"2023-10-07"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.32","percent_visits_covid":"0.79","percent_visits_influenza":"2.11","percent_visits_rsv":"0.44","week_end":"2023-10-14"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"3.89","percent_visits_covid":"0.69","percent_visits_influenza":"2.74","percent_visits_rsv":"0.49","week_end":"2023-10-21"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.27","percent_visits_covid":"0.69","percent_visits_influenza":"3.15","percent_visits_rsv":"0.47","week_end":"2023-10-28"}
-,{"county":"Monroe","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.58","percent_visits_covid":"0.64","percent_visits_influenza":"3.48","percent_visits_rsv":"0.48","week_end":"2023-11-04"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.69","percent_visits_covid":"0.64","percent_visits_influenza":"3.66","percent_visits_rsv":"0.42","week_end":"2023-11-11"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.56","percent_visits_covid":"0.65","percent_visits_influenza":"3.61","percent_visits_rsv":"0.33","week_end":"2023-11-18"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.87","percent_visits_covid":"0.76","percent_visits_influenza":"3.78","percent_visits_rsv":"0.36","week_end":"2023-11-25"}
-,{"county":"Monroe","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Miami-Dade (Miami), FL - Broward, FL","hsa_counties":"Broward, Miami-Dade, Monroe","percent_visits_combined":"4.51","percent_visits_covid":"0.99","percent_visits_influenza":"3.25","percent_visits_rsv":"0.32","week_end":"2023-12-02"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.66","percent_visits_covid":"0.96","percent_visits_influenza":"0.41","percent_visits_rsv":"1.32","week_end":"2022-10-01"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.87","percent_visits_covid":"0.77","percent_visits_influenza":"0.44","percent_visits_rsv":"0.67","week_end":"2022-10-08"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.81","percent_visits_covid":"0.61","percent_visits_influenza":"0.6","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.68","percent_visits_covid":"0.62","percent_visits_influenza":"1.37","percent_visits_rsv":"0.7","week_end":"2022-10-22"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.11","percent_visits_covid":"0.9","percent_visits_influenza":"2.7","percent_visits_rsv":"0.56","week_end":"2022-10-29"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.91","percent_visits_covid":"0.96","percent_visits_influenza":"5.48","percent_visits_rsv":"0.49","week_end":"2022-11-05"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"7.7","percent_visits_covid":"0.91","percent_visits_influenza":"6.22","percent_visits_rsv":"0.57","week_end":"2022-11-12"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.46","percent_visits_covid":"0.85","percent_visits_influenza":"5.24","percent_visits_rsv":"0.45","week_end":"2022-11-19"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"7.93","percent_visits_covid":"1.24","percent_visits_influenza":"6.46","percent_visits_rsv":"0.38","week_end":"2022-11-26"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.22","percent_visits_covid":"1.46","percent_visits_influenza":"4.53","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.4","percent_visits_covid":"1.53","percent_visits_influenza":"3.72","percent_visits_rsv":"0.18","week_end":"2022-12-10"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.46","percent_visits_covid":"1.89","percent_visits_influenza":"3.42","percent_visits_rsv":"0.2","week_end":"2022-12-17"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.32","percent_visits_covid":"2.17","percent_visits_influenza":"3.03","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"6.14","percent_visits_covid":"3.32","percent_visits_influenza":"2.64","percent_visits_rsv":"0.25","week_end":"2022-12-31"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.38","percent_visits_covid":"3.24","percent_visits_influenza":"2.02","percent_visits_rsv":"0.15","week_end":"2023-01-07"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.88","percent_visits_covid":"2.82","percent_visits_influenza":"1.0","percent_visits_rsv":"0.09","week_end":"2023-01-14"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.0","percent_visits_covid":"2.92","percent_visits_influenza":"1.06","percent_visits_rsv":"0.09","week_end":"2023-01-21"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.0","percent_visits_covid":"2.9","percent_visits_influenza":"1.05","percent_visits_rsv":"0.09","week_end":"2023-01-28"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.71","percent_visits_covid":"2.51","percent_visits_influenza":"1.21","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.01","percent_visits_covid":"2.07","percent_visits_influenza":"0.9","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.07","percent_visits_covid":"1.36","percent_visits_influenza":"0.64","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.67","percent_visits_covid":"1.18","percent_visits_influenza":"0.42","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.48","percent_visits_covid":"1.08","percent_visits_influenza":"0.35","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.12","percent_visits_covid":"0.84","percent_visits_influenza":"0.23","percent_visits_rsv":"0.06","week_end":"2023-03-11"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.29","percent_visits_covid":"0.97","percent_visits_influenza":"0.25","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.22","percent_visits_covid":"0.95","percent_visits_influenza":"0.27","percent_visits_rsv":"0.02","week_end":"2023-03-25"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.04","percent_visits_covid":"0.74","percent_visits_influenza":"0.3","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.0","percent_visits_covid":"0.72","percent_visits_influenza":"0.24","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.97","percent_visits_covid":"0.69","percent_visits_influenza":"0.28","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.78","percent_visits_covid":"0.55","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.89","percent_visits_covid":"0.64","percent_visits_influenza":"0.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.01","percent_visits_covid":"0.76","percent_visits_influenza":"0.23","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.06","percent_visits_covid":"0.69","percent_visits_influenza":"0.34","percent_visits_rsv":"0.03","week_end":"2023-05-13"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"0.99","percent_visits_covid":"0.59","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-05-20"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.26","percent_visits_covid":"0.62","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.49","percent_visits_covid":"0.92","percent_visits_influenza":"0.53","percent_visits_rsv":"0.07","week_end":"2023-06-03"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.57","percent_visits_covid":"0.97","percent_visits_influenza":"0.53","percent_visits_rsv":"0.06","week_end":"2023-06-10"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.38","percent_visits_covid":"0.99","percent_visits_influenza":"0.34","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.54","percent_visits_covid":"1.08","percent_visits_influenza":"0.44","percent_visits_rsv":"0.03","week_end":"2023-06-24"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.76","percent_visits_covid":"1.25","percent_visits_influenza":"0.47","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.86","percent_visits_covid":"1.35","percent_visits_influenza":"0.43","percent_visits_rsv":"0.09","week_end":"2023-07-08"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"1.97","percent_visits_covid":"1.52","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-07-15"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.06","percent_visits_covid":"1.52","percent_visits_influenza":"0.49","percent_visits_rsv":"0.06","week_end":"2023-07-22"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.55","percent_visits_covid":"2.03","percent_visits_influenza":"0.42","percent_visits_rsv":"0.12","week_end":"2023-07-29"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.79","percent_visits_covid":"2.24","percent_visits_influenza":"0.47","percent_visits_rsv":"0.09","week_end":"2023-08-05"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.11","percent_visits_covid":"2.59","percent_visits_influenza":"0.4","percent_visits_rsv":"0.14","week_end":"2023-08-12"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.67","percent_visits_covid":"3.16","percent_visits_influenza":"0.43","percent_visits_rsv":"0.1","week_end":"2023-08-19"}
-,{"county":"Nassau","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.7","percent_visits_covid":"3.96","percent_visits_influenza":"0.58","percent_visits_rsv":"0.21","week_end":"2023-08-26"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.34","percent_visits_covid":"4.65","percent_visits_influenza":"0.55","percent_visits_rsv":"0.19","week_end":"2023-09-02"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.23","percent_visits_covid":"3.58","percent_visits_influenza":"0.47","percent_visits_rsv":"0.21","week_end":"2023-09-09"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.31","percent_visits_covid":"2.55","percent_visits_influenza":"0.48","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.95","percent_visits_covid":"1.93","percent_visits_influenza":"0.76","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"2.84","percent_visits_covid":"1.39","percent_visits_influenza":"1.0","percent_visits_rsv":"0.49","week_end":"2023-09-30"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.51","percent_visits_covid":"1.3","percent_visits_influenza":"1.28","percent_visits_rsv":"0.99","week_end":"2023-10-07"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.17","percent_visits_covid":"0.98","percent_visits_influenza":"1.34","percent_visits_rsv":"0.88","week_end":"2023-10-14"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"3.67","percent_visits_covid":"0.93","percent_visits_influenza":"1.75","percent_visits_rsv":"1.07","week_end":"2023-10-21"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.16","percent_visits_covid":"0.87","percent_visits_influenza":"2.08","percent_visits_rsv":"1.24","week_end":"2023-10-28"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"4.37","percent_visits_covid":"0.82","percent_visits_influenza":"2.35","percent_visits_rsv":"1.25","week_end":"2023-11-04"}
-,{"county":"Nassau","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.5","percent_visits_covid":"0.87","percent_visits_influenza":"3.49","percent_visits_rsv":"1.2","week_end":"2023-11-11"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.21","percent_visits_covid":"0.65","percent_visits_influenza":"3.67","percent_visits_rsv":"0.96","week_end":"2023-11-18"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.57","percent_visits_covid":"0.74","percent_visits_influenza":"4.02","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Nassau","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Duval (Jacksonville), FL - Clay, FL","hsa_counties":"Baker, Clay, Duval, Nassau","percent_visits_combined":"5.41","percent_visits_covid":"0.77","percent_visits_influenza":"3.95","percent_visits_rsv":"0.74","week_end":"2023-12-02"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.56","percent_visits_covid":"1.04","percent_visits_influenza":"0.96","percent_visits_rsv":"0.58","week_end":"2022-10-01"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.81","percent_visits_covid":"0.84","percent_visits_influenza":"2.37","percent_visits_rsv":"0.63","week_end":"2022-10-08"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.41","percent_visits_covid":"0.52","percent_visits_influenza":"3.38","percent_visits_rsv":"0.53","week_end":"2022-10-15"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.61","percent_visits_covid":"0.66","percent_visits_influenza":"5.64","percent_visits_rsv":"0.38","week_end":"2022-10-22"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"10.89","percent_visits_covid":"0.78","percent_visits_influenza":"9.83","percent_visits_rsv":"0.34","week_end":"2022-10-29"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"12.08","percent_visits_covid":"0.8","percent_visits_influenza":"11.1","percent_visits_rsv":"0.22","week_end":"2022-11-05"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"9.37","percent_visits_covid":"0.6","percent_visits_influenza":"8.48","percent_visits_rsv":"0.33","week_end":"2022-11-12"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.8","percent_visits_covid":"1.02","percent_visits_influenza":"5.71","percent_visits_rsv":"0.14","week_end":"2022-11-19"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.62","percent_visits_covid":"1.27","percent_visits_influenza":"5.03","percent_visits_rsv":"0.36","week_end":"2022-11-26"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"5.65","percent_visits_covid":"1.71","percent_visits_influenza":"3.87","percent_visits_rsv":"0.22","week_end":"2022-12-03"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.71","percent_visits_covid":"1.37","percent_visits_influenza":"2.22","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.93","percent_visits_covid":"1.79","percent_visits_influenza":"1.96","percent_visits_rsv":"0.23","week_end":"2022-12-17"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.7","percent_visits_covid":"2.5","percent_visits_influenza":"2.09","percent_visits_rsv":"0.16","week_end":"2022-12-24"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.12","percent_visits_covid":"3.87","percent_visits_influenza":"2.16","percent_visits_rsv":"0.16","week_end":"2022-12-31"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.84","percent_visits_covid":"3.35","percent_visits_influenza":"1.47","percent_visits_rsv":"0.1","week_end":"2023-01-07"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.19","percent_visits_covid":"2.33","percent_visits_influenza":"0.82","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.68","percent_visits_covid":"2.15","percent_visits_influenza":"0.53","percent_visits_rsv":"0.04","week_end":"2023-01-21"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.48","percent_visits_covid":"1.82","percent_visits_influenza":"0.68","percent_visits_rsv":"0.05","week_end":"2023-01-28"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.5","percent_visits_covid":"1.96","percent_visits_influenza":"0.54","percent_visits_rsv":"0.03","week_end":"2023-02-04"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.31","percent_visits_covid":"1.78","percent_visits_influenza":"0.53","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.76","percent_visits_covid":"1.13","percent_visits_influenza":"0.6","percent_visits_rsv":"0.03","week_end":"2023-04-01"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.21","percent_visits_covid":"1.59","percent_visits_influenza":"0.6","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.85","percent_visits_covid":"1.46","percent_visits_influenza":"0.45","percent_visits_rsv":"0.02","week_end":"2023-02-25"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.48","percent_visits_covid":"1.1","percent_visits_influenza":"0.33","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.25","percent_visits_covid":"0.92","percent_visits_influenza":"0.24","percent_visits_rsv":"0.1","week_end":"2023-03-11"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.12","percent_visits_covid":"0.88","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-03-18"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.05","percent_visits_covid":"0.85","percent_visits_influenza":"0.17","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.23","percent_visits_covid":"1.05","percent_visits_influenza":"0.18","percent_visits_rsv":"0.03","week_end":"2023-04-01"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.37","percent_visits_covid":"0.96","percent_visits_influenza":"0.33","percent_visits_rsv":"0.08","week_end":"2023-04-08"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.96","percent_visits_covid":"0.72","percent_visits_influenza":"0.25","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.94","percent_visits_covid":"0.71","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-04-22"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.78","percent_visits_influenza":"0.38","percent_visits_rsv":"0.06","week_end":"2023-04-29"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.17","percent_visits_covid":"0.65","percent_visits_influenza":"0.49","percent_visits_rsv":"0.05","week_end":"2023-05-06"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.11","percent_visits_covid":"0.64","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.09","percent_visits_covid":"0.67","percent_visits_influenza":"0.36","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.01","percent_visits_covid":"0.63","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.64","percent_visits_influenza":"0.48","percent_visits_rsv":"0.09","week_end":"2023-06-03"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.76","percent_visits_influenza":"0.41","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.96","percent_visits_covid":"0.52","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.78","percent_visits_covid":"0.54","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-06-24"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.77","percent_visits_covid":"0.61","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.92","percent_visits_covid":"0.68","percent_visits_influenza":"0.2","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.39","percent_visits_covid":"1.14","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.73","percent_visits_covid":"1.45","percent_visits_influenza":"0.25","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.81","percent_visits_covid":"1.53","percent_visits_influenza":"0.28","percent_visits_rsv":"0.04","week_end":"2023-07-29"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.36","percent_visits_covid":"2.13","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-08-05"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.02","percent_visits_covid":"2.56","percent_visits_influenza":"0.46","percent_visits_rsv":"0.07","week_end":"2023-08-12"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.25","percent_visits_covid":"2.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.09","week_end":"2023-08-19"}
-,{"county":"Okaloosa","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.52","percent_visits_covid":"3.99","percent_visits_influenza":"0.5","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.73","percent_visits_covid":"4.23","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.81","percent_visits_covid":"3.33","percent_visits_influenza":"0.49","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.21","percent_visits_covid":"2.53","percent_visits_influenza":"0.54","percent_visits_rsv":"0.17","week_end":"2023-09-16"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.71","percent_visits_covid":"2.06","percent_visits_influenza":"0.5","percent_visits_rsv":"0.18","week_end":"2023-09-23"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.61","percent_visits_covid":"1.76","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-30"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.13","percent_visits_covid":"1.22","percent_visits_influenza":"0.66","percent_visits_rsv":"0.29","week_end":"2023-10-07"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.4","percent_visits_covid":"1.29","percent_visits_influenza":"0.7","percent_visits_rsv":"0.46","week_end":"2023-10-14"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.46","percent_visits_covid":"0.83","percent_visits_influenza":"0.89","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.97","percent_visits_covid":"1.1","percent_visits_influenza":"1.0","percent_visits_rsv":"0.92","week_end":"2023-10-28"}
-,{"county":"Okaloosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.09","percent_visits_covid":"0.77","percent_visits_influenza":"1.35","percent_visits_rsv":"1.04","week_end":"2023-11-04"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.25","percent_visits_covid":"1.07","percent_visits_influenza":"2.08","percent_visits_rsv":"1.2","week_end":"2023-11-11"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.74","percent_visits_covid":"0.62","percent_visits_influenza":"2.38","percent_visits_rsv":"0.82","week_end":"2023-11-18"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.08","percent_visits_covid":"0.64","percent_visits_influenza":"2.48","percent_visits_rsv":"1.08","week_end":"2023-11-25"}
-,{"county":"Okaloosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.65","percent_visits_covid":"1.0","percent_visits_influenza":"2.92","percent_visits_rsv":"0.81","week_end":"2023-12-02"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.0","percent_visits_covid":"1.81","percent_visits_influenza":"0.47","percent_visits_rsv":"0.73","week_end":"2022-10-01"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.36","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.61","week_end":"2022-10-08"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.46","percent_visits_covid":"1.28","percent_visits_influenza":"0.58","percent_visits_rsv":"0.63","week_end":"2022-10-15"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.42","percent_visits_covid":"1.14","percent_visits_influenza":"0.69","percent_visits_rsv":"0.6","week_end":"2022-10-22"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.95","percent_visits_covid":"1.29","percent_visits_influenza":"0.96","percent_visits_rsv":"0.73","week_end":"2022-10-29"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.38","percent_visits_covid":"1.39","percent_visits_influenza":"1.31","percent_visits_rsv":"0.71","week_end":"2022-11-05"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.68","percent_visits_covid":"1.32","percent_visits_influenza":"1.75","percent_visits_rsv":"0.64","week_end":"2022-11-12"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.18","percent_visits_covid":"1.34","percent_visits_influenza":"1.4","percent_visits_rsv":"0.46","week_end":"2022-11-19"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.72","percent_visits_covid":"1.54","percent_visits_influenza":"1.86","percent_visits_rsv":"0.38","week_end":"2022-11-26"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.7","percent_visits_covid":"2.21","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2022-12-03"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.29","percent_visits_covid":"2.3","percent_visits_influenza":"2.8","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"6.35","percent_visits_covid":"2.53","percent_visits_influenza":"3.75","percent_visits_rsv":"0.2","week_end":"2022-12-17"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"6.77","percent_visits_covid":"3.0","percent_visits_influenza":"3.7","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"7.3","percent_visits_covid":"4.09","percent_visits_influenza":"3.12","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.91","percent_visits_covid":"3.62","percent_visits_influenza":"2.24","percent_visits_rsv":"0.16","week_end":"2023-01-07"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.82","percent_visits_covid":"3.12","percent_visits_influenza":"1.6","percent_visits_rsv":"0.15","week_end":"2023-01-14"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.57","percent_visits_covid":"2.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.18","week_end":"2023-01-21"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.21","percent_visits_covid":"2.86","percent_visits_influenza":"1.24","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.72","percent_visits_covid":"2.42","percent_visits_influenza":"1.15","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.13","percent_visits_covid":"2.19","percent_visits_influenza":"0.84","percent_visits_rsv":"0.13","week_end":"2023-02-11"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.74","percent_visits_covid":"1.96","percent_visits_influenza":"0.74","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.52","percent_visits_covid":"1.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.3","percent_visits_covid":"1.49","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-03-04"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.04","percent_visits_covid":"1.38","percent_visits_influenza":"0.62","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.77","percent_visits_covid":"1.15","percent_visits_influenza":"0.56","percent_visits_rsv":"0.09","week_end":"2023-03-18"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.24","percent_visits_influenza":"0.56","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.6","percent_visits_covid":"1.13","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.06","percent_visits_covid":"1.35","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.12","percent_visits_influenza":"0.63","percent_visits_rsv":"0.09","week_end":"2023-04-15"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.72","percent_visits_covid":"1.05","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.69","percent_visits_rsv":"0.1","week_end":"2023-04-29"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.98","percent_visits_covid":"1.08","percent_visits_influenza":"0.84","percent_visits_rsv":"0.07","week_end":"2023-05-06"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.87","percent_visits_covid":"1.04","percent_visits_influenza":"0.82","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.93","percent_visits_covid":"1.02","percent_visits_influenza":"0.84","percent_visits_rsv":"0.08","week_end":"2023-05-20"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.11","percent_visits_covid":"1.1","percent_visits_influenza":"0.95","percent_visits_rsv":"0.07","week_end":"2023-05-27"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.64","percent_visits_covid":"1.22","percent_visits_influenza":"1.31","percent_visits_rsv":"0.13","week_end":"2023-06-03"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.45","percent_visits_covid":"1.27","percent_visits_influenza":"1.02","percent_visits_rsv":"0.17","week_end":"2023-06-10"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.48","percent_visits_covid":"1.32","percent_visits_influenza":"1.05","percent_visits_rsv":"0.14","week_end":"2023-06-17"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.63","percent_visits_covid":"1.48","percent_visits_influenza":"1.07","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.51","percent_visits_covid":"1.31","percent_visits_influenza":"1.08","percent_visits_rsv":"0.13","week_end":"2023-07-01"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.77","percent_visits_covid":"1.63","percent_visits_influenza":"0.97","percent_visits_rsv":"0.19","week_end":"2023-07-08"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.66","percent_visits_covid":"1.81","percent_visits_influenza":"0.68","percent_visits_rsv":"0.21","week_end":"2023-07-15"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.16","percent_visits_covid":"2.36","percent_visits_influenza":"0.66","percent_visits_rsv":"0.17","week_end":"2023-07-22"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.55","percent_visits_covid":"2.73","percent_visits_influenza":"0.66","percent_visits_rsv":"0.19","week_end":"2023-07-29"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.12","percent_visits_covid":"3.27","percent_visits_influenza":"0.74","percent_visits_rsv":"0.2","week_end":"2023-08-05"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.78","percent_visits_covid":"3.97","percent_visits_influenza":"0.75","percent_visits_rsv":"0.12","week_end":"2023-08-12"}
-,{"county":"Okeechobee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.95","percent_visits_covid":"4.13","percent_visits_influenza":"0.68","percent_visits_rsv":"0.22","week_end":"2023-08-19"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.36","percent_visits_covid":"4.26","percent_visits_influenza":"0.81","percent_visits_rsv":"0.34","week_end":"2023-08-26"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.91","percent_visits_covid":"3.71","percent_visits_influenza":"0.91","percent_visits_rsv":"0.34","week_end":"2023-09-02"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.83","percent_visits_covid":"3.29","percent_visits_influenza":"1.19","percent_visits_rsv":"0.47","week_end":"2023-09-09"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.78","percent_visits_covid":"2.07","percent_visits_influenza":"1.34","percent_visits_rsv":"0.4","week_end":"2023-09-16"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.56","percent_visits_covid":"1.65","percent_visits_influenza":"1.51","percent_visits_rsv":"0.5","week_end":"2023-09-23"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.5","percent_visits_covid":"1.19","percent_visits_influenza":"1.73","percent_visits_rsv":"0.61","week_end":"2023-09-30"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.78","percent_visits_covid":"1.02","percent_visits_influenza":"2.08","percent_visits_rsv":"0.76","week_end":"2023-10-07"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.42","percent_visits_covid":"1.12","percent_visits_influenza":"2.45","percent_visits_rsv":"0.91","week_end":"2023-10-14"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.96","percent_visits_covid":"1.01","percent_visits_influenza":"3.2","percent_visits_rsv":"0.82","week_end":"2023-10-21"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.22","percent_visits_covid":"0.78","percent_visits_influenza":"3.65","percent_visits_rsv":"0.89","week_end":"2023-10-28"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.37","percent_visits_covid":"0.76","percent_visits_influenza":"3.98","percent_visits_rsv":"0.67","week_end":"2023-11-04"}
-,{"county":"Okeechobee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.06","percent_visits_covid":"0.65","percent_visits_influenza":"3.88","percent_visits_rsv":"0.58","week_end":"2023-11-11"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.11","percent_visits_covid":"0.7","percent_visits_influenza":"3.98","percent_visits_rsv":"0.49","week_end":"2023-11-18"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.07","percent_visits_covid":"0.72","percent_visits_influenza":"3.83","percent_visits_rsv":"0.59","week_end":"2023-11-25"}
-,{"county":"Okeechobee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.8","percent_visits_covid":"0.72","percent_visits_influenza":"2.62","percent_visits_rsv":"0.5","week_end":"2023-12-02"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.01","percent_visits_covid":"1.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.84","week_end":"2022-10-01"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.17","percent_visits_covid":"1.33","percent_visits_influenza":"0.35","percent_visits_rsv":"0.5","week_end":"2022-10-08"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.04","percent_visits_covid":"1.14","percent_visits_influenza":"0.52","percent_visits_rsv":"0.39","week_end":"2022-10-15"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.17","percent_visits_influenza":"0.92","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.69","percent_visits_covid":"1.24","percent_visits_influenza":"1.92","percent_visits_rsv":"0.55","week_end":"2022-10-29"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.56","percent_visits_covid":"1.24","percent_visits_influenza":"2.94","percent_visits_rsv":"0.42","week_end":"2022-11-05"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.62","percent_visits_covid":"1.39","percent_visits_influenza":"3.77","percent_visits_rsv":"0.51","week_end":"2022-11-12"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"1.29","percent_visits_influenza":"3.02","percent_visits_rsv":"0.41","week_end":"2022-11-19"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.93","percent_visits_covid":"1.68","percent_visits_influenza":"3.87","percent_visits_rsv":"0.45","week_end":"2022-11-26"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.38","percent_visits_covid":"2.16","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.23","percent_visits_covid":"2.28","percent_visits_influenza":"3.73","percent_visits_rsv":"0.3","week_end":"2022-12-10"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.6","percent_visits_covid":"2.63","percent_visits_influenza":"3.85","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.19","percent_visits_covid":"2.88","percent_visits_influenza":"4.19","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"8.36","percent_visits_covid":"4.03","percent_visits_influenza":"4.22","percent_visits_rsv":"0.26","week_end":"2022-12-31"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.15","percent_visits_covid":"3.82","percent_visits_influenza":"3.24","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.24","percent_visits_covid":"2.99","percent_visits_influenza":"2.2","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.7","percent_visits_covid":"2.77","percent_visits_influenza":"1.85","percent_visits_rsv":"0.14","week_end":"2023-01-21"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"2.5","percent_visits_influenza":"1.42","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.46","percent_visits_covid":"2.23","percent_visits_influenza":"1.18","percent_visits_rsv":"0.1","week_end":"2023-02-04"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.84","percent_visits_covid":"1.8","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-02-11"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.57","percent_visits_covid":"1.69","percent_visits_influenza":"0.78","percent_visits_rsv":"0.1","week_end":"2023-02-18"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.13","percent_visits_covid":"1.5","percent_visits_influenza":"0.57","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.11","percent_visits_covid":"1.49","percent_visits_influenza":"0.54","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.17","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.58","percent_visits_covid":"1.18","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.14","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.8","percent_visits_covid":"1.29","percent_visits_influenza":"0.46","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.64","percent_visits_covid":"1.14","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-15"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.48","percent_visits_covid":"0.98","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.59","percent_visits_covid":"0.88","percent_visits_influenza":"0.68","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.63","percent_visits_covid":"0.85","percent_visits_influenza":"0.75","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"0.83","percent_visits_influenza":"0.83","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.73","percent_visits_covid":"0.83","percent_visits_influenza":"0.86","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.12","percent_visits_covid":"1.06","percent_visits_influenza":"1.01","percent_visits_rsv":"0.06","week_end":"2023-05-27"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.31","percent_visits_influenza":"1.16","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.21","percent_visits_covid":"1.16","percent_visits_influenza":"0.97","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.94","percent_visits_covid":"1.18","percent_visits_influenza":"0.74","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.05","percent_visits_covid":"1.29","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.09","percent_visits_covid":"1.37","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-07-01"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.36","percent_visits_covid":"1.62","percent_visits_influenza":"0.71","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.54","percent_visits_covid":"1.89","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.0","percent_visits_covid":"2.35","percent_visits_influenza":"0.59","percent_visits_rsv":"0.07","week_end":"2023-07-22"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.49","percent_visits_covid":"2.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-07-29"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.98","percent_visits_covid":"3.43","percent_visits_influenza":"0.51","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.23","percent_visits_covid":"3.75","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.86","percent_visits_covid":"4.25","percent_visits_influenza":"0.51","percent_visits_rsv":"0.13","week_end":"2023-08-19"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.72","percent_visits_covid":"4.94","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.61","percent_visits_covid":"4.66","percent_visits_influenza":"0.82","percent_visits_rsv":"0.16","week_end":"2023-09-02"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"3.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-09"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.75","percent_visits_covid":"2.8","percent_visits_influenza":"0.77","percent_visits_rsv":"0.21","week_end":"2023-09-16"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.43","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.35","week_end":"2023-09-23"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.36","percent_visits_covid":"1.81","percent_visits_influenza":"1.17","percent_visits_rsv":"0.4","week_end":"2023-09-30"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.32","percent_visits_covid":"1.43","percent_visits_influenza":"1.38","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.59","percent_visits_covid":"1.3","percent_visits_influenza":"1.66","percent_visits_rsv":"0.65","week_end":"2023-10-14"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.82","percent_visits_covid":"1.22","percent_visits_influenza":"1.8","percent_visits_rsv":"0.84","week_end":"2023-10-21"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"1.21","percent_visits_influenza":"2.01","percent_visits_rsv":"0.83","week_end":"2023-10-28"}
-,{"county":"Orange","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.48","percent_visits_covid":"0.91","percent_visits_influenza":"2.75","percent_visits_rsv":"0.86","week_end":"2023-11-04"}
-,{"county":"Orange","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.03","percent_visits_covid":"0.91","percent_visits_influenza":"3.21","percent_visits_rsv":"0.97","week_end":"2023-11-11"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.43","percent_visits_covid":"1.03","percent_visits_influenza":"3.59","percent_visits_rsv":"0.88","week_end":"2023-11-18"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.18","percent_visits_covid":"1.15","percent_visits_influenza":"4.28","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Orange","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.22","percent_visits_covid":"1.28","percent_visits_influenza":"4.29","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.35","percent_visits_covid":"1.73","percent_visits_influenza":"1.67","percent_visits_rsv":"1.04","week_end":"2022-10-01"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.52","percent_visits_covid":"1.29","percent_visits_influenza":"0.84","percent_visits_rsv":"0.42","week_end":"2022-10-08"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.14","percent_visits_covid":"0.98","percent_visits_influenza":"0.83","percent_visits_rsv":"0.33","week_end":"2022-10-15"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.71","percent_visits_covid":"1.11","percent_visits_influenza":"1.37","percent_visits_rsv":"0.25","week_end":"2022-10-22"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.33","percent_visits_covid":"1.47","percent_visits_influenza":"2.4","percent_visits_rsv":"0.5","week_end":"2022-10-29"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"6.11","percent_visits_covid":"1.51","percent_visits_influenza":"4.18","percent_visits_rsv":"0.45","week_end":"2022-11-05"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"7.91","percent_visits_covid":"1.54","percent_visits_influenza":"6.05","percent_visits_rsv":"0.39","week_end":"2022-11-12"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"6.55","percent_visits_covid":"1.42","percent_visits_influenza":"4.87","percent_visits_rsv":"0.34","week_end":"2022-11-19"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"8.59","percent_visits_covid":"2.37","percent_visits_influenza":"6.06","percent_visits_rsv":"0.25","week_end":"2022-11-26"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"8.09","percent_visits_covid":"2.6","percent_visits_influenza":"5.38","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"8.28","percent_visits_covid":"2.8","percent_visits_influenza":"5.39","percent_visits_rsv":"0.29","week_end":"2022-12-10"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"9.68","percent_visits_covid":"3.38","percent_visits_influenza":"6.27","percent_visits_rsv":"0.18","week_end":"2022-12-17"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"9.6","percent_visits_covid":"3.17","percent_visits_influenza":"6.36","percent_visits_rsv":"0.19","week_end":"2022-12-24"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"9.34","percent_visits_covid":"4.42","percent_visits_influenza":"5.0","percent_visits_rsv":"0.13","week_end":"2022-12-31"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"8.25","percent_visits_covid":"3.87","percent_visits_influenza":"4.41","percent_visits_rsv":"0.1","week_end":"2023-01-07"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"5.96","percent_visits_covid":"3.27","percent_visits_influenza":"2.67","percent_visits_rsv":"0.16","week_end":"2023-01-14"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.76","percent_visits_covid":"3.07","percent_visits_influenza":"1.62","percent_visits_rsv":"0.08","week_end":"2023-01-21"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"3.87","percent_visits_covid":"2.4","percent_visits_influenza":"1.46","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"3.93","percent_visits_covid":"2.72","percent_visits_influenza":"1.14","percent_visits_rsv":"0.13","week_end":"2023-02-04"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.94","percent_visits_covid":"2.01","percent_visits_influenza":"0.86","percent_visits_rsv":"0.12","week_end":"2023-02-11"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.76","percent_visits_covid":"1.95","percent_visits_influenza":"0.73","percent_visits_rsv":"0.08","week_end":"2023-02-18"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.21","percent_visits_covid":"1.54","percent_visits_influenza":"0.67","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.18","percent_visits_covid":"1.49","percent_visits_influenza":"0.67","percent_visits_rsv":"0.01","week_end":"2023-03-04"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.07","percent_visits_covid":"1.48","percent_visits_influenza":"0.55","percent_visits_rsv":"0.04","week_end":"2023-03-11"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.98","percent_visits_covid":"1.32","percent_visits_influenza":"0.65","percent_visits_rsv":"0.03","week_end":"2023-03-18"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.87","percent_visits_covid":"1.24","percent_visits_influenza":"0.56","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.89","percent_visits_covid":"1.08","percent_visits_influenza":"0.79","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.68","percent_visits_covid":"0.93","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.71","percent_visits_covid":"0.82","percent_visits_influenza":"0.89","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.79","percent_visits_covid":"0.77","percent_visits_influenza":"1.02","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.29","percent_visits_covid":"0.91","percent_visits_influenza":"1.34","percent_visits_rsv":"0.05","week_end":"2023-05-13"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.04","percent_visits_covid":"0.85","percent_visits_influenza":"1.15","percent_visits_rsv":"0.03","week_end":"2023-05-20"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.52","percent_visits_covid":"0.77","percent_visits_influenza":"1.71","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.86","percent_visits_covid":"1.18","percent_visits_influenza":"1.63","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.85","percent_visits_covid":"1.15","percent_visits_influenza":"1.7","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.32","percent_visits_covid":"1.13","percent_visits_influenza":"1.21","percent_visits_rsv":"0.02","week_end":"2023-06-17"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"1.99","percent_visits_covid":"1.3","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"2.65","percent_visits_covid":"1.77","percent_visits_influenza":"0.88","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"3.02","percent_visits_covid":"1.7","percent_visits_influenza":"1.3","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"3.57","percent_visits_covid":"2.55","percent_visits_influenza":"1.02","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"3.3","percent_visits_covid":"2.39","percent_visits_influenza":"0.86","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.45","percent_visits_covid":"3.56","percent_visits_influenza":"0.93","percent_visits_rsv":"0.02","week_end":"2023-07-29"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"5.43","percent_visits_covid":"4.49","percent_visits_influenza":"0.92","percent_visits_rsv":"0.07","week_end":"2023-08-05"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.96","percent_visits_covid":"4.41","percent_visits_influenza":"0.61","percent_visits_rsv":"0.02","week_end":"2023-08-12"}
-,{"county":"Osceola","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"5.27","percent_visits_covid":"4.55","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-08-19"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"7.59","percent_visits_covid":"6.54","percent_visits_influenza":"1.11","percent_visits_rsv":"0.08","week_end":"2023-08-26"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"6.42","percent_visits_covid":"5.23","percent_visits_influenza":"1.12","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.88","percent_visits_covid":"3.52","percent_visits_influenza":"1.27","percent_visits_rsv":"0.18","week_end":"2023-09-09"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"3.65","percent_visits_covid":"2.36","percent_visits_influenza":"1.31","percent_visits_rsv":"0.03","week_end":"2023-09-16"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"3.64","percent_visits_covid":"1.6","percent_visits_influenza":"1.8","percent_visits_rsv":"0.29","week_end":"2023-09-23"}
-,{"county":"Osceola","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"3.36","percent_visits_covid":"1.61","percent_visits_influenza":"1.54","percent_visits_rsv":"0.26","week_end":"2023-09-30"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.05","percent_visits_covid":"1.6","percent_visits_influenza":"2.14","percent_visits_rsv":"0.31","week_end":"2023-10-07"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.93","percent_visits_covid":"1.36","percent_visits_influenza":"3.13","percent_visits_rsv":"0.49","week_end":"2023-10-14"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"5.03","percent_visits_covid":"1.18","percent_visits_influenza":"3.24","percent_visits_rsv":"0.64","week_end":"2023-10-21"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"4.88","percent_visits_covid":"1.16","percent_visits_influenza":"3.17","percent_visits_rsv":"0.6","week_end":"2023-10-28"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"6.47","percent_visits_covid":"1.46","percent_visits_influenza":"4.42","percent_visits_rsv":"0.69","week_end":"2023-11-04"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"7.11","percent_visits_covid":"1.27","percent_visits_influenza":"5.39","percent_visits_rsv":"0.6","week_end":"2023-11-11"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"7.35","percent_visits_covid":"1.04","percent_visits_influenza":"5.89","percent_visits_rsv":"0.55","week_end":"2023-11-18"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"8.96","percent_visits_covid":"1.33","percent_visits_influenza":"6.94","percent_visits_rsv":"0.74","week_end":"2023-11-25"}
-,{"county":"Osceola","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Osceola, FL","hsa_counties":"Osceola","percent_visits_combined":"7.95","percent_visits_covid":"1.47","percent_visits_influenza":"5.96","percent_visits_rsv":"0.62","week_end":"2023-12-02"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.0","percent_visits_covid":"1.81","percent_visits_influenza":"0.47","percent_visits_rsv":"0.73","week_end":"2022-10-01"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.36","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.61","week_end":"2022-10-08"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.46","percent_visits_covid":"1.28","percent_visits_influenza":"0.58","percent_visits_rsv":"0.63","week_end":"2022-10-15"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.42","percent_visits_covid":"1.14","percent_visits_influenza":"0.69","percent_visits_rsv":"0.6","week_end":"2022-10-22"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.95","percent_visits_covid":"1.29","percent_visits_influenza":"0.96","percent_visits_rsv":"0.73","week_end":"2022-10-29"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.38","percent_visits_covid":"1.39","percent_visits_influenza":"1.31","percent_visits_rsv":"0.71","week_end":"2022-11-05"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.68","percent_visits_covid":"1.32","percent_visits_influenza":"1.75","percent_visits_rsv":"0.64","week_end":"2022-11-12"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.18","percent_visits_covid":"1.34","percent_visits_influenza":"1.4","percent_visits_rsv":"0.46","week_end":"2022-11-19"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.72","percent_visits_covid":"1.54","percent_visits_influenza":"1.86","percent_visits_rsv":"0.38","week_end":"2022-11-26"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.7","percent_visits_covid":"2.21","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2022-12-03"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.29","percent_visits_covid":"2.3","percent_visits_influenza":"2.8","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.56","percent_visits_covid":"4.07","percent_visits_influenza":"5.25","percent_visits_rsv":"0.41","week_end":"2022-12-31"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"6.35","percent_visits_covid":"2.53","percent_visits_influenza":"3.75","percent_visits_rsv":"0.2","week_end":"2022-12-17"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"6.77","percent_visits_covid":"3.0","percent_visits_influenza":"3.7","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"7.3","percent_visits_covid":"4.09","percent_visits_influenza":"3.12","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.91","percent_visits_covid":"3.62","percent_visits_influenza":"2.24","percent_visits_rsv":"0.16","week_end":"2023-01-07"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.82","percent_visits_covid":"3.12","percent_visits_influenza":"1.6","percent_visits_rsv":"0.15","week_end":"2023-01-14"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.57","percent_visits_covid":"2.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.18","week_end":"2023-01-21"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.21","percent_visits_covid":"2.86","percent_visits_influenza":"1.24","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.72","percent_visits_covid":"2.42","percent_visits_influenza":"1.15","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.13","percent_visits_covid":"2.19","percent_visits_influenza":"0.84","percent_visits_rsv":"0.13","week_end":"2023-02-11"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.74","percent_visits_covid":"1.96","percent_visits_influenza":"0.74","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.52","percent_visits_covid":"1.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.3","percent_visits_covid":"1.49","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-03-04"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.04","percent_visits_covid":"1.38","percent_visits_influenza":"0.62","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.77","percent_visits_covid":"1.15","percent_visits_influenza":"0.56","percent_visits_rsv":"0.09","week_end":"2023-03-18"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.24","percent_visits_influenza":"0.56","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.6","percent_visits_covid":"1.13","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.06","percent_visits_covid":"1.35","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.12","percent_visits_influenza":"0.63","percent_visits_rsv":"0.09","week_end":"2023-04-15"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.72","percent_visits_covid":"1.05","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.69","percent_visits_rsv":"0.1","week_end":"2023-04-29"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.98","percent_visits_covid":"1.08","percent_visits_influenza":"0.84","percent_visits_rsv":"0.07","week_end":"2023-05-06"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.87","percent_visits_covid":"1.04","percent_visits_influenza":"0.82","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.93","percent_visits_covid":"1.02","percent_visits_influenza":"0.84","percent_visits_rsv":"0.08","week_end":"2023-05-20"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.11","percent_visits_covid":"1.1","percent_visits_influenza":"0.95","percent_visits_rsv":"0.07","week_end":"2023-05-27"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.64","percent_visits_covid":"1.22","percent_visits_influenza":"1.31","percent_visits_rsv":"0.13","week_end":"2023-06-03"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.45","percent_visits_covid":"1.27","percent_visits_influenza":"1.02","percent_visits_rsv":"0.17","week_end":"2023-06-10"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.48","percent_visits_covid":"1.32","percent_visits_influenza":"1.05","percent_visits_rsv":"0.14","week_end":"2023-06-17"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.63","percent_visits_covid":"1.48","percent_visits_influenza":"1.07","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.51","percent_visits_covid":"1.31","percent_visits_influenza":"1.08","percent_visits_rsv":"0.13","week_end":"2023-07-01"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.77","percent_visits_covid":"1.63","percent_visits_influenza":"0.97","percent_visits_rsv":"0.19","week_end":"2023-07-08"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.66","percent_visits_covid":"1.81","percent_visits_influenza":"0.68","percent_visits_rsv":"0.21","week_end":"2023-07-15"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.16","percent_visits_covid":"2.36","percent_visits_influenza":"0.66","percent_visits_rsv":"0.17","week_end":"2023-07-22"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.55","percent_visits_covid":"2.73","percent_visits_influenza":"0.66","percent_visits_rsv":"0.19","week_end":"2023-07-29"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.12","percent_visits_covid":"3.27","percent_visits_influenza":"0.74","percent_visits_rsv":"0.2","week_end":"2023-08-05"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.78","percent_visits_covid":"3.97","percent_visits_influenza":"0.75","percent_visits_rsv":"0.12","week_end":"2023-08-12"}
-,{"county":"Palm Beach","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.95","percent_visits_covid":"4.13","percent_visits_influenza":"0.68","percent_visits_rsv":"0.22","week_end":"2023-08-19"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.36","percent_visits_covid":"4.26","percent_visits_influenza":"0.81","percent_visits_rsv":"0.34","week_end":"2023-08-26"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.91","percent_visits_covid":"3.71","percent_visits_influenza":"0.91","percent_visits_rsv":"0.34","week_end":"2023-09-02"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.83","percent_visits_covid":"3.29","percent_visits_influenza":"1.19","percent_visits_rsv":"0.47","week_end":"2023-09-09"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.78","percent_visits_covid":"2.07","percent_visits_influenza":"1.34","percent_visits_rsv":"0.4","week_end":"2023-09-16"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.56","percent_visits_covid":"1.65","percent_visits_influenza":"1.51","percent_visits_rsv":"0.5","week_end":"2023-09-23"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.5","percent_visits_covid":"1.19","percent_visits_influenza":"1.73","percent_visits_rsv":"0.61","week_end":"2023-09-30"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.78","percent_visits_covid":"1.02","percent_visits_influenza":"2.08","percent_visits_rsv":"0.76","week_end":"2023-10-07"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.42","percent_visits_covid":"1.12","percent_visits_influenza":"2.45","percent_visits_rsv":"0.91","week_end":"2023-10-14"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.96","percent_visits_covid":"1.01","percent_visits_influenza":"3.2","percent_visits_rsv":"0.82","week_end":"2023-10-21"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.22","percent_visits_covid":"0.78","percent_visits_influenza":"3.65","percent_visits_rsv":"0.89","week_end":"2023-10-28"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.37","percent_visits_covid":"0.76","percent_visits_influenza":"3.98","percent_visits_rsv":"0.67","week_end":"2023-11-04"}
-,{"county":"Palm Beach","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.06","percent_visits_covid":"0.65","percent_visits_influenza":"3.88","percent_visits_rsv":"0.58","week_end":"2023-11-11"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.11","percent_visits_covid":"0.7","percent_visits_influenza":"3.98","percent_visits_rsv":"0.49","week_end":"2023-11-18"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.07","percent_visits_covid":"0.72","percent_visits_influenza":"3.83","percent_visits_rsv":"0.59","week_end":"2023-11-25"}
-,{"county":"Palm Beach","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.8","percent_visits_covid":"0.72","percent_visits_influenza":"2.62","percent_visits_rsv":"0.5","week_end":"2023-12-02"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.75","percent_visits_covid":"1.64","percent_visits_influenza":"0.41","percent_visits_rsv":"0.72","week_end":"2022-10-01"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.03","percent_visits_covid":"1.2","percent_visits_influenza":"0.3","percent_visits_rsv":"0.55","week_end":"2022-10-08"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.89","percent_visits_covid":"1.04","percent_visits_influenza":"0.39","percent_visits_rsv":"0.49","week_end":"2022-10-15"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.19","percent_visits_covid":"1.04","percent_visits_influenza":"0.58","percent_visits_rsv":"0.59","week_end":"2022-10-22"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.88","percent_visits_covid":"1.15","percent_visits_influenza":"1.19","percent_visits_rsv":"0.56","week_end":"2022-10-29"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.45","percent_visits_covid":"1.25","percent_visits_influenza":"1.66","percent_visits_rsv":"0.59","week_end":"2022-11-05"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.3","percent_visits_covid":"1.33","percent_visits_influenza":"2.42","percent_visits_rsv":"0.61","week_end":"2022-11-12"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.38","percent_visits_covid":"1.27","percent_visits_influenza":"2.62","percent_visits_rsv":"0.52","week_end":"2022-11-19"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.39","percent_visits_covid":"1.62","percent_visits_influenza":"3.33","percent_visits_rsv":"0.5","week_end":"2022-11-26"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.35","percent_visits_covid":"1.67","percent_visits_influenza":"3.24","percent_visits_rsv":"0.51","week_end":"2022-12-03"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.62","percent_visits_covid":"1.84","percent_visits_influenza":"3.48","percent_visits_rsv":"0.36","week_end":"2022-12-10"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.41","percent_visits_covid":"2.2","percent_visits_influenza":"4.0","percent_visits_rsv":"0.28","week_end":"2022-12-17"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"7.45","percent_visits_covid":"2.63","percent_visits_influenza":"4.57","percent_visits_rsv":"0.36","week_end":"2022-12-24"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"8.44","percent_visits_covid":"3.34","percent_visits_influenza":"4.91","percent_visits_rsv":"0.32","week_end":"2022-12-31"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.47","percent_visits_covid":"3.12","percent_visits_influenza":"3.18","percent_visits_rsv":"0.28","week_end":"2023-01-07"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.85","percent_visits_covid":"2.68","percent_visits_influenza":"2.04","percent_visits_rsv":"0.23","week_end":"2023-01-14"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.25","percent_visits_covid":"2.43","percent_visits_influenza":"1.68","percent_visits_rsv":"0.18","week_end":"2023-01-21"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.81","percent_visits_covid":"2.44","percent_visits_influenza":"1.26","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.38","percent_visits_covid":"2.26","percent_visits_influenza":"0.98","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.91","percent_visits_covid":"1.95","percent_visits_influenza":"0.87","percent_visits_rsv":"0.13","week_end":"2023-02-11"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.7","percent_visits_covid":"1.97","percent_visits_influenza":"0.64","percent_visits_rsv":"0.11","week_end":"2023-02-18"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.54","percent_visits_covid":"1.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.11","percent_visits_covid":"1.54","percent_visits_influenza":"0.52","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.04","percent_visits_covid":"1.37","percent_visits_influenza":"0.54","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.92","percent_visits_covid":"1.45","percent_visits_influenza":"0.36","percent_visits_rsv":"0.13","week_end":"2023-03-18"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.09","percent_visits_covid":"1.49","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.78","percent_visits_covid":"1.31","percent_visits_influenza":"0.41","percent_visits_rsv":"0.07","week_end":"2023-04-01"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.8","percent_visits_covid":"1.24","percent_visits_influenza":"0.5","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.73","percent_visits_covid":"1.12","percent_visits_influenza":"0.52","percent_visits_rsv":"0.12","week_end":"2023-04-15"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.61","percent_visits_covid":"1.09","percent_visits_influenza":"0.43","percent_visits_rsv":"0.11","week_end":"2023-04-22"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.64","percent_visits_covid":"1.07","percent_visits_influenza":"0.47","percent_visits_rsv":"0.12","week_end":"2023-04-29"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.43","percent_visits_covid":"0.91","percent_visits_influenza":"0.43","percent_visits_rsv":"0.11","week_end":"2023-05-06"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.42","percent_visits_covid":"0.93","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.43","percent_visits_covid":"0.91","percent_visits_influenza":"0.44","percent_visits_rsv":"0.11","week_end":"2023-05-20"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.49","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.64","percent_visits_covid":"1.01","percent_visits_influenza":"0.57","percent_visits_rsv":"0.08","week_end":"2023-06-03"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.68","percent_visits_covid":"1.02","percent_visits_influenza":"0.57","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.53","percent_visits_covid":"0.99","percent_visits_influenza":"0.51","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.78","percent_visits_covid":"1.17","percent_visits_influenza":"0.51","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.74","percent_visits_covid":"1.33","percent_visits_influenza":"0.33","percent_visits_rsv":"0.09","week_end":"2023-07-01"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.98","percent_visits_covid":"1.61","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.97","percent_visits_covid":"1.57","percent_visits_influenza":"0.33","percent_visits_rsv":"0.09","week_end":"2023-07-15"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.81","percent_visits_covid":"2.3","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-07-22"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.45","percent_visits_covid":"2.95","percent_visits_influenza":"0.41","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.15","percent_visits_covid":"3.61","percent_visits_influenza":"0.42","percent_visits_rsv":"0.16","week_end":"2023-08-05"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.23","percent_visits_covid":"3.69","percent_visits_influenza":"0.44","percent_visits_rsv":"0.15","week_end":"2023-08-12"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.64","percent_visits_covid":"4.07","percent_visits_influenza":"0.4","percent_visits_rsv":"0.22","week_end":"2023-08-19"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.97","percent_visits_covid":"5.06","percent_visits_influenza":"0.69","percent_visits_rsv":"0.27","week_end":"2023-08-26"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.54","percent_visits_covid":"4.57","percent_visits_influenza":"0.72","percent_visits_rsv":"0.32","week_end":"2023-09-02"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.53","percent_visits_covid":"3.6","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-09-09"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.63","percent_visits_covid":"2.48","percent_visits_influenza":"0.8","percent_visits_rsv":"0.39","week_end":"2023-09-16"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.62","percent_visits_covid":"2.0","percent_visits_influenza":"1.1","percent_visits_rsv":"0.58","week_end":"2023-09-23"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.48","percent_visits_covid":"1.56","percent_visits_influenza":"1.36","percent_visits_rsv":"0.6","week_end":"2023-09-30"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.95","percent_visits_covid":"1.35","percent_visits_influenza":"1.81","percent_visits_rsv":"0.86","week_end":"2023-10-07"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.18","percent_visits_covid":"1.24","percent_visits_influenza":"2.03","percent_visits_rsv":"0.99","week_end":"2023-10-14"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.45","percent_visits_covid":"1.16","percent_visits_influenza":"2.49","percent_visits_rsv":"0.85","week_end":"2023-10-21"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.87","percent_visits_covid":"1.01","percent_visits_influenza":"2.84","percent_visits_rsv":"1.11","week_end":"2023-10-28"}
-,{"county":"Pasco","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.62","percent_visits_covid":"0.9","percent_visits_influenza":"3.69","percent_visits_rsv":"1.11","week_end":"2023-11-04"}
-,{"county":"Pasco","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.11","percent_visits_covid":"0.9","percent_visits_influenza":"4.29","percent_visits_rsv":"1.0","week_end":"2023-11-11"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.2","percent_visits_covid":"0.86","percent_visits_influenza":"4.39","percent_visits_rsv":"1.02","week_end":"2023-11-18"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.25","percent_visits_covid":"1.0","percent_visits_influenza":"4.39","percent_visits_rsv":"0.92","week_end":"2023-11-25"}
-,{"county":"Pasco","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.47","percent_visits_covid":"1.06","percent_visits_influenza":"3.8","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.75","percent_visits_covid":"1.64","percent_visits_influenza":"0.41","percent_visits_rsv":"0.72","week_end":"2022-10-01"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.03","percent_visits_covid":"1.2","percent_visits_influenza":"0.3","percent_visits_rsv":"0.55","week_end":"2022-10-08"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.89","percent_visits_covid":"1.04","percent_visits_influenza":"0.39","percent_visits_rsv":"0.49","week_end":"2022-10-15"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.19","percent_visits_covid":"1.04","percent_visits_influenza":"0.58","percent_visits_rsv":"0.59","week_end":"2022-10-22"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.88","percent_visits_covid":"1.15","percent_visits_influenza":"1.19","percent_visits_rsv":"0.56","week_end":"2022-10-29"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.45","percent_visits_covid":"1.25","percent_visits_influenza":"1.66","percent_visits_rsv":"0.59","week_end":"2022-11-05"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.3","percent_visits_covid":"1.33","percent_visits_influenza":"2.42","percent_visits_rsv":"0.61","week_end":"2022-11-12"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.38","percent_visits_covid":"1.27","percent_visits_influenza":"2.62","percent_visits_rsv":"0.52","week_end":"2022-11-19"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.39","percent_visits_covid":"1.62","percent_visits_influenza":"3.33","percent_visits_rsv":"0.5","week_end":"2022-11-26"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.35","percent_visits_covid":"1.67","percent_visits_influenza":"3.24","percent_visits_rsv":"0.51","week_end":"2022-12-03"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.62","percent_visits_covid":"1.84","percent_visits_influenza":"3.48","percent_visits_rsv":"0.36","week_end":"2022-12-10"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.41","percent_visits_covid":"2.2","percent_visits_influenza":"4.0","percent_visits_rsv":"0.28","week_end":"2022-12-17"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"7.45","percent_visits_covid":"2.63","percent_visits_influenza":"4.57","percent_visits_rsv":"0.36","week_end":"2022-12-24"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"8.44","percent_visits_covid":"3.34","percent_visits_influenza":"4.91","percent_visits_rsv":"0.32","week_end":"2022-12-31"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.47","percent_visits_covid":"3.12","percent_visits_influenza":"3.18","percent_visits_rsv":"0.28","week_end":"2023-01-07"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.85","percent_visits_covid":"2.68","percent_visits_influenza":"2.04","percent_visits_rsv":"0.23","week_end":"2023-01-14"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.25","percent_visits_covid":"2.43","percent_visits_influenza":"1.68","percent_visits_rsv":"0.18","week_end":"2023-01-21"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.81","percent_visits_covid":"2.44","percent_visits_influenza":"1.26","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.38","percent_visits_covid":"2.26","percent_visits_influenza":"0.98","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.91","percent_visits_covid":"1.95","percent_visits_influenza":"0.87","percent_visits_rsv":"0.13","week_end":"2023-02-11"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.7","percent_visits_covid":"1.97","percent_visits_influenza":"0.64","percent_visits_rsv":"0.11","week_end":"2023-02-18"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.54","percent_visits_covid":"1.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.1","week_end":"2023-02-25"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.11","percent_visits_covid":"1.54","percent_visits_influenza":"0.52","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.04","percent_visits_covid":"1.37","percent_visits_influenza":"0.54","percent_visits_rsv":"0.14","week_end":"2023-03-11"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.92","percent_visits_covid":"1.45","percent_visits_influenza":"0.36","percent_visits_rsv":"0.13","week_end":"2023-03-18"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.09","percent_visits_covid":"1.49","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-03-25"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.78","percent_visits_covid":"1.31","percent_visits_influenza":"0.41","percent_visits_rsv":"0.07","week_end":"2023-04-01"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.8","percent_visits_covid":"1.24","percent_visits_influenza":"0.5","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.73","percent_visits_covid":"1.12","percent_visits_influenza":"0.52","percent_visits_rsv":"0.12","week_end":"2023-04-15"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.61","percent_visits_covid":"1.09","percent_visits_influenza":"0.43","percent_visits_rsv":"0.11","week_end":"2023-04-22"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.64","percent_visits_covid":"1.07","percent_visits_influenza":"0.47","percent_visits_rsv":"0.12","week_end":"2023-04-29"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.43","percent_visits_covid":"0.91","percent_visits_influenza":"0.43","percent_visits_rsv":"0.11","week_end":"2023-05-06"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.42","percent_visits_covid":"0.93","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.43","percent_visits_covid":"0.91","percent_visits_influenza":"0.44","percent_visits_rsv":"0.11","week_end":"2023-05-20"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.49","percent_visits_covid":"0.97","percent_visits_influenza":"0.49","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.64","percent_visits_covid":"1.01","percent_visits_influenza":"0.57","percent_visits_rsv":"0.08","week_end":"2023-06-03"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.68","percent_visits_covid":"1.02","percent_visits_influenza":"0.57","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.53","percent_visits_covid":"0.99","percent_visits_influenza":"0.51","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.78","percent_visits_covid":"1.17","percent_visits_influenza":"0.51","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.74","percent_visits_covid":"1.33","percent_visits_influenza":"0.33","percent_visits_rsv":"0.09","week_end":"2023-07-01"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.98","percent_visits_covid":"1.61","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"1.97","percent_visits_covid":"1.57","percent_visits_influenza":"0.33","percent_visits_rsv":"0.09","week_end":"2023-07-15"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"2.81","percent_visits_covid":"2.3","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-07-22"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.45","percent_visits_covid":"2.95","percent_visits_influenza":"0.41","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.15","percent_visits_covid":"3.61","percent_visits_influenza":"0.42","percent_visits_rsv":"0.16","week_end":"2023-08-05"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.23","percent_visits_covid":"3.69","percent_visits_influenza":"0.44","percent_visits_rsv":"0.15","week_end":"2023-08-12"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.64","percent_visits_covid":"4.07","percent_visits_influenza":"0.4","percent_visits_rsv":"0.22","week_end":"2023-08-19"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.97","percent_visits_covid":"5.06","percent_visits_influenza":"0.69","percent_visits_rsv":"0.27","week_end":"2023-08-26"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.54","percent_visits_covid":"4.57","percent_visits_influenza":"0.72","percent_visits_rsv":"0.32","week_end":"2023-09-02"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.53","percent_visits_covid":"3.6","percent_visits_influenza":"0.67","percent_visits_rsv":"0.33","week_end":"2023-09-09"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.63","percent_visits_covid":"2.48","percent_visits_influenza":"0.8","percent_visits_rsv":"0.39","week_end":"2023-09-16"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.62","percent_visits_covid":"2.0","percent_visits_influenza":"1.1","percent_visits_rsv":"0.58","week_end":"2023-09-23"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.48","percent_visits_covid":"1.56","percent_visits_influenza":"1.36","percent_visits_rsv":"0.6","week_end":"2023-09-30"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"3.95","percent_visits_covid":"1.35","percent_visits_influenza":"1.81","percent_visits_rsv":"0.86","week_end":"2023-10-07"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.18","percent_visits_covid":"1.24","percent_visits_influenza":"2.03","percent_visits_rsv":"0.99","week_end":"2023-10-14"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.45","percent_visits_covid":"1.16","percent_visits_influenza":"2.49","percent_visits_rsv":"0.85","week_end":"2023-10-21"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"4.87","percent_visits_covid":"1.01","percent_visits_influenza":"2.84","percent_visits_rsv":"1.11","week_end":"2023-10-28"}
-,{"county":"Pinellas","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.62","percent_visits_covid":"0.9","percent_visits_influenza":"3.69","percent_visits_rsv":"1.11","week_end":"2023-11-04"}
-,{"county":"Pinellas","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.11","percent_visits_covid":"0.9","percent_visits_influenza":"4.29","percent_visits_rsv":"1.0","week_end":"2023-11-11"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.2","percent_visits_covid":"0.86","percent_visits_influenza":"4.39","percent_visits_rsv":"1.02","week_end":"2023-11-18"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"6.25","percent_visits_covid":"1.0","percent_visits_influenza":"4.39","percent_visits_rsv":"0.92","week_end":"2023-11-25"}
-,{"county":"Pinellas","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Hillsborough (Tampa), FL - Pinellas, FL","hsa_counties":"Hernando, Hillsborough, Pasco, Pinellas","percent_visits_combined":"5.47","percent_visits_covid":"1.06","percent_visits_influenza":"3.8","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.41","percent_visits_covid":"1.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.98","week_end":"2022-10-01"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.17","percent_visits_covid":"1.63","percent_visits_influenza":"0.57","percent_visits_rsv":"1.04","week_end":"2022-10-08"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.7","percent_visits_covid":"1.32","percent_visits_influenza":"0.58","percent_visits_rsv":"0.83","week_end":"2022-10-15"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.02","percent_visits_covid":"1.37","percent_visits_influenza":"0.89","percent_visits_rsv":"0.83","week_end":"2022-10-22"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.09","percent_visits_covid":"1.77","percent_visits_influenza":"1.48","percent_visits_rsv":"0.91","week_end":"2022-10-29"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.14","percent_visits_covid":"1.44","percent_visits_influenza":"2.68","percent_visits_rsv":"1.06","week_end":"2022-11-05"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.56","percent_visits_covid":"1.41","percent_visits_influenza":"3.28","percent_visits_rsv":"0.93","week_end":"2022-11-12"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.6","percent_visits_covid":"1.53","percent_visits_influenza":"3.03","percent_visits_rsv":"1.08","week_end":"2022-11-19"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.08","percent_visits_covid":"2.21","percent_visits_influenza":"5.06","percent_visits_rsv":"0.87","week_end":"2022-11-26"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.16","percent_visits_covid":"2.22","percent_visits_influenza":"4.15","percent_visits_rsv":"0.86","week_end":"2022-12-03"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.78","percent_visits_covid":"2.4","percent_visits_influenza":"3.82","percent_visits_rsv":"0.62","week_end":"2022-12-10"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.04","percent_visits_covid":"2.66","percent_visits_influenza":"4.99","percent_visits_rsv":"0.54","week_end":"2022-12-17"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.87","percent_visits_covid":"3.18","percent_visits_influenza":"5.26","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.46","percent_visits_covid":"3.64","percent_visits_influenza":"3.46","percent_visits_rsv":"0.45","week_end":"2023-01-07"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.69","percent_visits_covid":"3.04","percent_visits_influenza":"2.48","percent_visits_rsv":"0.26","week_end":"2023-01-14"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.99","percent_visits_covid":"2.48","percent_visits_influenza":"1.35","percent_visits_rsv":"0.2","week_end":"2023-01-21"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.5","percent_visits_covid":"2.76","percent_visits_influenza":"1.64","percent_visits_rsv":"0.13","week_end":"2023-01-28"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.73","percent_visits_covid":"2.35","percent_visits_influenza":"1.25","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.89","percent_visits_covid":"2.07","percent_visits_influenza":"0.73","percent_visits_rsv":"0.09","week_end":"2023-02-11"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.91","percent_visits_covid":"2.02","percent_visits_influenza":"0.77","percent_visits_rsv":"0.12","week_end":"2023-02-18"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.77","percent_visits_covid":"2.08","percent_visits_influenza":"0.62","percent_visits_rsv":"0.12","week_end":"2023-02-25"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.45","percent_visits_covid":"1.71","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.28","percent_visits_covid":"1.65","percent_visits_influenza":"0.58","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.22","percent_visits_covid":"1.55","percent_visits_influenza":"0.65","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.12","percent_visits_covid":"1.5","percent_visits_influenza":"0.53","percent_visits_rsv":"0.1","week_end":"2023-03-25"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.16","percent_visits_covid":"1.46","percent_visits_influenza":"0.62","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.0","percent_visits_covid":"1.51","percent_visits_influenza":"0.48","percent_visits_rsv":"0.03","week_end":"2023-04-08"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.65","percent_visits_covid":"1.14","percent_visits_influenza":"0.46","percent_visits_rsv":"0.05","week_end":"2023-04-15"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.46","percent_visits_covid":"1.14","percent_visits_influenza":"0.27","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.62","percent_visits_covid":"1.12","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-29"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.55","percent_visits_rsv":"0.09","week_end":"2023-05-06"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.58","percent_visits_covid":"0.91","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-05-13"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.91","percent_visits_covid":"1.04","percent_visits_influenza":"0.85","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.82","percent_visits_covid":"0.96","percent_visits_influenza":"0.87","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.31","percent_visits_covid":"1.09","percent_visits_influenza":"1.21","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.35","percent_visits_covid":"1.19","percent_visits_influenza":"1.18","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.09","percent_visits_covid":"1.09","percent_visits_influenza":"0.95","percent_visits_rsv":"0.06","week_end":"2023-06-17"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"1.71","percent_visits_covid":"1.06","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-24"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.1","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.17","week_end":"2023-07-01"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.32","percent_visits_covid":"1.57","percent_visits_influenza":"0.69","percent_visits_rsv":"0.14","week_end":"2023-07-08"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.73","percent_visits_covid":"1.89","percent_visits_influenza":"0.75","percent_visits_rsv":"0.13","week_end":"2023-07-15"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"2.75","percent_visits_covid":"2.03","percent_visits_influenza":"0.57","percent_visits_rsv":"0.17","week_end":"2023-07-22"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"3.43","percent_visits_covid":"2.72","percent_visits_influenza":"0.59","percent_visits_rsv":"0.16","week_end":"2023-07-29"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.15","percent_visits_covid":"3.34","percent_visits_influenza":"0.71","percent_visits_rsv":"0.2","week_end":"2023-08-05"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.07","percent_visits_covid":"4.36","percent_visits_influenza":"0.58","percent_visits_rsv":"0.22","week_end":"2023-08-12"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.08","percent_visits_covid":"4.92","percent_visits_influenza":"0.97","percent_visits_rsv":"0.28","week_end":"2023-08-19"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.33","percent_visits_covid":"6.11","percent_visits_influenza":"1.03","percent_visits_rsv":"0.34","week_end":"2023-08-26"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.59","percent_visits_covid":"5.13","percent_visits_influenza":"1.11","percent_visits_rsv":"0.47","week_end":"2023-09-02"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.39","percent_visits_covid":"4.05","percent_visits_influenza":"1.06","percent_visits_rsv":"0.36","week_end":"2023-09-09"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.43","percent_visits_covid":"2.64","percent_visits_influenza":"1.26","percent_visits_rsv":"0.67","week_end":"2023-09-16"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.16","percent_visits_covid":"1.66","percent_visits_influenza":"1.84","percent_visits_rsv":"0.72","week_end":"2023-09-23"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.59","percent_visits_covid":"1.62","percent_visits_influenza":"2.22","percent_visits_rsv":"0.83","week_end":"2023-09-30"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"4.43","percent_visits_covid":"1.15","percent_visits_influenza":"2.65","percent_visits_rsv":"0.74","week_end":"2023-10-07"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"5.79","percent_visits_covid":"1.07","percent_visits_influenza":"3.78","percent_visits_rsv":"1.01","week_end":"2023-10-14"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.63","percent_visits_covid":"1.2","percent_visits_influenza":"4.3","percent_visits_rsv":"1.24","week_end":"2023-10-21"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"7.82","percent_visits_covid":"1.06","percent_visits_influenza":"5.58","percent_visits_rsv":"1.26","week_end":"2023-10-28"}
-,{"county":"Polk","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.57","percent_visits_covid":"0.82","percent_visits_influenza":"7.49","percent_visits_rsv":"1.39","week_end":"2023-11-04"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.05","percent_visits_covid":"0.8","percent_visits_influenza":"6.7","percent_visits_rsv":"1.66","week_end":"2023-11-11"}
-,{"county":"Polk","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"9.29","percent_visits_covid":"0.83","percent_visits_influenza":"7.3","percent_visits_rsv":"1.27","week_end":"2023-11-18"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"8.6","percent_visits_covid":"0.97","percent_visits_influenza":"6.79","percent_visits_rsv":"0.88","week_end":"2023-11-25"}
-,{"county":"Polk","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Polk (Lakeland), FL - Highlands, FL","hsa_counties":"Hardee, Highlands, Polk","percent_visits_combined":"6.4","percent_visits_covid":"1.02","percent_visits_influenza":"4.77","percent_visits_rsv":"0.73","week_end":"2023-12-02"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.12","percent_visits_covid":"1.2","percent_visits_influenza":"0.52","percent_visits_rsv":"0.4","week_end":"2022-10-01"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.74","percent_visits_covid":"1.36","percent_visits_influenza":"0.27","percent_visits_rsv":"0.11","week_end":"2022-10-08"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.49","percent_visits_covid":"1.5","percent_visits_influenza":"0.88","percent_visits_rsv":"0.16","week_end":"2022-10-15"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.12","percent_visits_covid":"1.14","percent_visits_influenza":"0.65","percent_visits_rsv":"0.38","week_end":"2022-10-22"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.09","percent_visits_covid":"1.33","percent_visits_influenza":"1.6","percent_visits_rsv":"0.21","week_end":"2022-10-29"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.62","percent_visits_covid":"1.38","percent_visits_influenza":"2.09","percent_visits_rsv":"0.26","week_end":"2022-11-05"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"5.14","percent_visits_covid":"1.61","percent_visits_influenza":"3.17","percent_visits_rsv":"0.36","week_end":"2022-11-12"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"5.52","percent_visits_covid":"1.41","percent_visits_influenza":"4.17","percent_visits_rsv":"0.05","week_end":"2022-11-19"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.17","percent_visits_covid":"1.58","percent_visits_influenza":"6.49","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"6.81","percent_visits_covid":"1.61","percent_visits_influenza":"5.3","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.12","percent_visits_covid":"2.03","percent_visits_influenza":"6.09","percent_visits_rsv":"0.1","week_end":"2022-12-10"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.38","percent_visits_covid":"2.02","percent_visits_influenza":"6.31","percent_visits_rsv":"0.05","week_end":"2022-12-17"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.86","percent_visits_covid":"2.63","percent_visits_influenza":"6.11","percent_visits_rsv":"0.17","week_end":"2022-12-24"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.28","percent_visits_covid":"3.83","percent_visits_influenza":"4.55","percent_visits_rsv":"0.05","week_end":"2022-12-31"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"5.79","percent_visits_covid":"3.25","percent_visits_influenza":"2.34","percent_visits_rsv":"0.2","week_end":"2023-01-07"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.68","percent_visits_covid":"1.58","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.06","percent_visits_covid":"2.5","percent_visits_influenza":"0.5","percent_visits_rsv":"0.06","week_end":"2023-01-21"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.04","percent_visits_covid":"2.48","percent_visits_influenza":"0.5","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.16","percent_visits_covid":"2.43","percent_visits_influenza":"0.73","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.08","percent_visits_covid":"2.07","percent_visits_influenza":"1.01","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.5","percent_visits_covid":"2.58","percent_visits_influenza":"0.93","percent_visits_rsv":"0.05","week_end":"2023-02-18"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.01","percent_visits_covid":"1.6","percent_visits_influenza":"0.41","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.85","percent_visits_covid":"1.65","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.1","percent_visits_covid":"0.84","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.24","percent_visits_covid":"0.96","percent_visits_influenza":"0.34","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.59","percent_visits_covid":"1.22","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.11","percent_visits_covid":"1.0","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.96","percent_visits_covid":"0.81","percent_visits_influenza":"0.15","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.97","percent_visits_covid":"0.81","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.92","percent_visits_covid":"0.49","percent_visits_influenza":"0.38","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.94","percent_visits_covid":"0.57","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.1","percent_visits_covid":"0.77","percent_visits_influenza":"0.16","percent_visits_rsv":"0.16","week_end":"2023-05-06"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.0","percent_visits_covid":"0.58","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.02","percent_visits_covid":"0.72","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.45","percent_visits_covid":"1.13","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.48","percent_visits_covid":"0.53","percent_visits_influenza":"0.9","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.47","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.9","percent_visits_covid":"0.51","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.9","percent_visits_covid":"0.45","percent_visits_influenza":"0.45","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.62","percent_visits_covid":"1.46","percent_visits_influenza":"0.17","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.39","percent_visits_covid":"1.24","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.66","percent_visits_covid":"1.95","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.66","percent_visits_covid":"2.11","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.0","percent_visits_covid":"2.77","percent_visits_influenza":"0.34","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.52","percent_visits_covid":"2.98","percent_visits_influenza":"0.6","percent_visits_rsv":"0.11","week_end":"2023-08-05"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.33","percent_visits_covid":"2.75","percent_visits_influenza":"0.53","percent_visits_rsv":"0.05","week_end":"2023-08-12"}
-,{"county":"Putnam","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.61","percent_visits_covid":"3.78","percent_visits_influenza":"0.67","percent_visits_rsv":"0.16","week_end":"2023-08-19"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"6.42","percent_visits_covid":"5.01","percent_visits_influenza":"1.36","percent_visits_rsv":"0.15","week_end":"2023-08-26"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"6.16","percent_visits_covid":"4.67","percent_visits_influenza":"1.23","percent_visits_rsv":"0.26","week_end":"2023-09-02"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.6","percent_visits_covid":"3.14","percent_visits_influenza":"1.46","percent_visits_rsv":"0.1","week_end":"2023-09-09"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.14","percent_visits_covid":"2.43","percent_visits_influenza":"1.5","percent_visits_rsv":"0.26","week_end":"2023-09-16"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.61","percent_visits_covid":"1.25","percent_visits_influenza":"1.04","percent_visits_rsv":"0.36","week_end":"2023-09-23"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.96","percent_visits_covid":"0.81","percent_visits_influenza":"1.96","percent_visits_rsv":"0.24","week_end":"2023-09-30"}
-,{"county":"Putnam","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.86","percent_visits_covid":"1.38","percent_visits_influenza":"2.07","percent_visits_rsv":"0.51","week_end":"2023-10-07"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.43","percent_visits_covid":"0.89","percent_visits_influenza":"2.23","percent_visits_rsv":"0.3","week_end":"2023-10-14"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.23","percent_visits_covid":"0.95","percent_visits_influenza":"2.09","percent_visits_rsv":"0.33","week_end":"2023-10-21"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.3","percent_visits_covid":"0.86","percent_visits_influenza":"1.72","percent_visits_rsv":"0.81","week_end":"2023-10-28"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.21","percent_visits_covid":"0.89","percent_visits_influenza":"1.69","percent_visits_rsv":"0.67","week_end":"2023-11-04"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"5.6","percent_visits_covid":"1.12","percent_visits_influenza":"4.29","percent_visits_rsv":"0.37","week_end":"2023-11-11"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.5","percent_visits_covid":"0.98","percent_visits_influenza":"3.3","percent_visits_rsv":"0.31","week_end":"2023-11-18"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.51","percent_visits_covid":"0.91","percent_visits_influenza":"3.31","percent_visits_rsv":"0.34","week_end":"2023-11-25"}
-,{"county":"Putnam","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.64","percent_visits_covid":"0.8","percent_visits_influenza":"3.75","percent_visits_rsv":"0.13","week_end":"2023-12-02"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.56","percent_visits_covid":"1.04","percent_visits_influenza":"0.96","percent_visits_rsv":"0.58","week_end":"2022-10-01"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.81","percent_visits_covid":"0.84","percent_visits_influenza":"2.37","percent_visits_rsv":"0.63","week_end":"2022-10-08"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.41","percent_visits_covid":"0.52","percent_visits_influenza":"3.38","percent_visits_rsv":"0.53","week_end":"2022-10-15"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.61","percent_visits_covid":"0.66","percent_visits_influenza":"5.64","percent_visits_rsv":"0.38","week_end":"2022-10-22"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"10.89","percent_visits_covid":"0.78","percent_visits_influenza":"9.83","percent_visits_rsv":"0.34","week_end":"2022-10-29"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"12.08","percent_visits_covid":"0.8","percent_visits_influenza":"11.1","percent_visits_rsv":"0.22","week_end":"2022-11-05"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"9.37","percent_visits_covid":"0.6","percent_visits_influenza":"8.48","percent_visits_rsv":"0.33","week_end":"2022-11-12"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.8","percent_visits_covid":"1.02","percent_visits_influenza":"5.71","percent_visits_rsv":"0.14","week_end":"2022-11-19"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.62","percent_visits_covid":"1.27","percent_visits_influenza":"5.03","percent_visits_rsv":"0.36","week_end":"2022-11-26"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"5.65","percent_visits_covid":"1.71","percent_visits_influenza":"3.87","percent_visits_rsv":"0.22","week_end":"2022-12-03"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.71","percent_visits_covid":"1.37","percent_visits_influenza":"2.22","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.93","percent_visits_covid":"1.79","percent_visits_influenza":"1.96","percent_visits_rsv":"0.23","week_end":"2022-12-17"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.7","percent_visits_covid":"2.5","percent_visits_influenza":"2.09","percent_visits_rsv":"0.16","week_end":"2022-12-24"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.12","percent_visits_covid":"3.87","percent_visits_influenza":"2.16","percent_visits_rsv":"0.16","week_end":"2022-12-31"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.84","percent_visits_covid":"3.35","percent_visits_influenza":"1.47","percent_visits_rsv":"0.1","week_end":"2023-01-07"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.19","percent_visits_covid":"2.33","percent_visits_influenza":"0.82","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.68","percent_visits_covid":"2.15","percent_visits_influenza":"0.53","percent_visits_rsv":"0.04","week_end":"2023-01-21"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.48","percent_visits_covid":"1.82","percent_visits_influenza":"0.68","percent_visits_rsv":"0.05","week_end":"2023-01-28"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.5","percent_visits_covid":"1.96","percent_visits_influenza":"0.54","percent_visits_rsv":"0.03","week_end":"2023-02-04"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.31","percent_visits_covid":"1.78","percent_visits_influenza":"0.53","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.21","percent_visits_covid":"1.59","percent_visits_influenza":"0.6","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.85","percent_visits_covid":"1.46","percent_visits_influenza":"0.45","percent_visits_rsv":"0.02","week_end":"2023-02-25"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.48","percent_visits_covid":"1.1","percent_visits_influenza":"0.33","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.25","percent_visits_covid":"0.92","percent_visits_influenza":"0.24","percent_visits_rsv":"0.1","week_end":"2023-03-11"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.12","percent_visits_covid":"0.88","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-03-18"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.05","percent_visits_covid":"0.85","percent_visits_influenza":"0.17","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.23","percent_visits_covid":"1.05","percent_visits_influenza":"0.18","percent_visits_rsv":"0.03","week_end":"2023-04-01"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.37","percent_visits_covid":"0.96","percent_visits_influenza":"0.33","percent_visits_rsv":"0.08","week_end":"2023-04-08"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.96","percent_visits_covid":"0.72","percent_visits_influenza":"0.25","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.94","percent_visits_covid":"0.71","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-04-22"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.78","percent_visits_influenza":"0.38","percent_visits_rsv":"0.06","week_end":"2023-04-29"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.17","percent_visits_covid":"0.65","percent_visits_influenza":"0.49","percent_visits_rsv":"0.05","week_end":"2023-05-06"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.11","percent_visits_covid":"0.64","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.09","percent_visits_covid":"0.67","percent_visits_influenza":"0.36","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.01","percent_visits_covid":"0.63","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.64","percent_visits_influenza":"0.48","percent_visits_rsv":"0.09","week_end":"2023-06-03"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.76","percent_visits_influenza":"0.41","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.96","percent_visits_covid":"0.52","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.78","percent_visits_covid":"0.54","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-06-24"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.77","percent_visits_covid":"0.61","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.92","percent_visits_covid":"0.68","percent_visits_influenza":"0.2","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.39","percent_visits_covid":"1.14","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.73","percent_visits_covid":"1.45","percent_visits_influenza":"0.25","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.81","percent_visits_covid":"1.53","percent_visits_influenza":"0.28","percent_visits_rsv":"0.04","week_end":"2023-07-29"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.36","percent_visits_covid":"2.13","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-08-05"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.02","percent_visits_covid":"2.56","percent_visits_influenza":"0.46","percent_visits_rsv":"0.07","week_end":"2023-08-12"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.25","percent_visits_covid":"2.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.09","week_end":"2023-08-19"}
-,{"county":"Santa Rosa","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.52","percent_visits_covid":"3.99","percent_visits_influenza":"0.5","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.73","percent_visits_covid":"4.23","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.81","percent_visits_covid":"3.33","percent_visits_influenza":"0.49","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.21","percent_visits_covid":"2.53","percent_visits_influenza":"0.54","percent_visits_rsv":"0.17","week_end":"2023-09-16"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.71","percent_visits_covid":"2.06","percent_visits_influenza":"0.5","percent_visits_rsv":"0.18","week_end":"2023-09-23"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.61","percent_visits_covid":"1.76","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-30"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.13","percent_visits_covid":"1.22","percent_visits_influenza":"0.66","percent_visits_rsv":"0.29","week_end":"2023-10-07"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.4","percent_visits_covid":"1.29","percent_visits_influenza":"0.7","percent_visits_rsv":"0.46","week_end":"2023-10-14"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.46","percent_visits_covid":"0.83","percent_visits_influenza":"0.89","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.97","percent_visits_covid":"1.1","percent_visits_influenza":"1.0","percent_visits_rsv":"0.92","week_end":"2023-10-28"}
-,{"county":"Santa Rosa","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.09","percent_visits_covid":"0.77","percent_visits_influenza":"1.35","percent_visits_rsv":"1.04","week_end":"2023-11-04"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.25","percent_visits_covid":"1.07","percent_visits_influenza":"2.08","percent_visits_rsv":"1.2","week_end":"2023-11-11"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.74","percent_visits_covid":"0.62","percent_visits_influenza":"2.38","percent_visits_rsv":"0.82","week_end":"2023-11-18"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.08","percent_visits_covid":"0.64","percent_visits_influenza":"2.48","percent_visits_rsv":"1.08","week_end":"2023-11-25"}
-,{"county":"Santa Rosa","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.65","percent_visits_covid":"1.0","percent_visits_influenza":"2.92","percent_visits_rsv":"0.81","week_end":"2023-12-02"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.44","percent_visits_covid":"1.77","percent_visits_influenza":"0.35","percent_visits_rsv":"0.38","week_end":"2022-10-01"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.19","percent_visits_covid":"1.55","percent_visits_influenza":"0.31","percent_visits_rsv":"0.35","week_end":"2022-10-08"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.62","percent_visits_covid":"2.09","percent_visits_influenza":"0.36","percent_visits_rsv":"0.2","week_end":"2022-10-15"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.62","percent_visits_covid":"2.15","percent_visits_influenza":"0.26","percent_visits_rsv":"0.25","week_end":"2022-10-22"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.07","percent_visits_covid":"2.46","percent_visits_influenza":"0.41","percent_visits_rsv":"0.2","week_end":"2022-10-29"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.85","percent_visits_covid":"2.74","percent_visits_influenza":"0.94","percent_visits_rsv":"0.18","week_end":"2022-11-05"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.04","percent_visits_covid":"2.23","percent_visits_influenza":"1.61","percent_visits_rsv":"0.21","week_end":"2022-11-12"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.16","percent_visits_covid":"2.43","percent_visits_influenza":"1.71","percent_visits_rsv":"0.12","week_end":"2022-11-19"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.25","percent_visits_covid":"2.31","percent_visits_influenza":"2.88","percent_visits_rsv":"0.12","week_end":"2022-11-26"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.16","percent_visits_covid":"2.5","percent_visits_influenza":"2.56","percent_visits_rsv":"0.17","week_end":"2022-12-03"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.86","percent_visits_covid":"2.39","percent_visits_influenza":"2.34","percent_visits_rsv":"0.15","week_end":"2022-12-10"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.62","percent_visits_covid":"2.8","percent_visits_influenza":"2.7","percent_visits_rsv":"0.19","week_end":"2022-12-17"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"6.11","percent_visits_covid":"2.87","percent_visits_influenza":"3.16","percent_visits_rsv":"0.14","week_end":"2022-12-24"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"6.84","percent_visits_covid":"3.68","percent_visits_influenza":"3.18","percent_visits_rsv":"0.08","week_end":"2022-12-31"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.74","percent_visits_covid":"3.46","percent_visits_influenza":"2.23","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.53","percent_visits_covid":"2.78","percent_visits_influenza":"1.65","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.17","percent_visits_covid":"2.78","percent_visits_influenza":"1.29","percent_visits_rsv":"0.1","week_end":"2023-01-21"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.06","percent_visits_covid":"2.16","percent_visits_influenza":"0.86","percent_visits_rsv":"0.1","week_end":"2023-01-28"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.81","percent_visits_covid":"2.68","percent_visits_influenza":"1.13","percent_visits_rsv":"0.06","week_end":"2023-02-04"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.39","percent_visits_covid":"2.36","percent_visits_influenza":"0.96","percent_visits_rsv":"0.1","week_end":"2023-02-11"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.28","percent_visits_covid":"2.2","percent_visits_influenza":"1.02","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.08","percent_visits_covid":"2.04","percent_visits_influenza":"1.0","percent_visits_rsv":"0.05","week_end":"2023-02-25"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.42","percent_visits_covid":"2.49","percent_visits_influenza":"0.89","percent_visits_rsv":"0.08","week_end":"2023-03-04"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.0","percent_visits_covid":"2.42","percent_visits_influenza":"0.54","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.77","percent_visits_covid":"2.2","percent_visits_influenza":"0.55","percent_visits_rsv":"0.03","week_end":"2023-03-18"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.35","percent_visits_covid":"1.93","percent_visits_influenza":"0.36","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.16","percent_visits_covid":"1.68","percent_visits_influenza":"0.49","percent_visits_rsv":"0.01","week_end":"2023-04-01"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.97","percent_visits_covid":"1.56","percent_visits_influenza":"0.39","percent_visits_rsv":"0.03","week_end":"2023-04-08"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.79","percent_visits_covid":"1.41","percent_visits_influenza":"0.36","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.8","percent_visits_covid":"1.37","percent_visits_influenza":"0.41","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.25","percent_visits_covid":"0.95","percent_visits_influenza":"0.28","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.56","percent_visits_covid":"1.16","percent_visits_influenza":"0.43","percent_visits_rsv":"0.0","week_end":"2023-05-06"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.07","percent_visits_covid":"0.75","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.0","percent_visits_covid":"0.66","percent_visits_influenza":"0.32","percent_visits_rsv":"0.02","week_end":"2023-05-20"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.13","percent_visits_covid":"0.78","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.36","percent_visits_covid":"0.92","percent_visits_influenza":"0.39","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"0.92","percent_visits_covid":"0.66","percent_visits_influenza":"0.25","percent_visits_rsv":"0.02","week_end":"2023-06-10"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.2","percent_visits_covid":"0.66","percent_visits_influenza":"0.56","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.48","percent_visits_covid":"1.13","percent_visits_influenza":"0.32","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.49","percent_visits_covid":"1.14","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-07-01"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.61","percent_visits_covid":"1.23","percent_visits_influenza":"0.4","percent_visits_rsv":"0.02","week_end":"2023-07-08"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.46","percent_visits_covid":"1.13","percent_visits_influenza":"0.33","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"1.87","percent_visits_covid":"1.49","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.45","percent_visits_covid":"2.02","percent_visits_influenza":"0.38","percent_visits_rsv":"0.05","week_end":"2023-07-29"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.68","percent_visits_covid":"2.34","percent_visits_influenza":"0.32","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.58","percent_visits_covid":"3.2","percent_visits_influenza":"0.38","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Sarasota","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.4","percent_visits_covid":"3.84","percent_visits_influenza":"0.58","percent_visits_rsv":"0.05","week_end":"2023-08-19"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.8","percent_visits_covid":"4.23","percent_visits_influenza":"0.56","percent_visits_rsv":"0.1","week_end":"2023-08-26"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"5.19","percent_visits_covid":"4.57","percent_visits_influenza":"0.5","percent_visits_rsv":"0.2","week_end":"2023-09-02"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.88","percent_visits_covid":"3.37","percent_visits_influenza":"0.45","percent_visits_rsv":"0.11","week_end":"2023-09-09"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.13","percent_visits_covid":"2.66","percent_visits_influenza":"0.42","percent_visits_rsv":"0.08","week_end":"2023-09-16"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.07","percent_visits_covid":"2.38","percent_visits_influenza":"0.56","percent_visits_rsv":"0.15","week_end":"2023-09-23"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"2.6","percent_visits_covid":"1.75","percent_visits_influenza":"0.62","percent_visits_rsv":"0.25","week_end":"2023-09-30"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.27","percent_visits_covid":"1.71","percent_visits_influenza":"1.28","percent_visits_rsv":"0.3","week_end":"2023-10-07"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.23","percent_visits_covid":"1.59","percent_visits_influenza":"1.28","percent_visits_rsv":"0.41","week_end":"2023-10-14"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.44","percent_visits_covid":"1.46","percent_visits_influenza":"1.38","percent_visits_rsv":"0.64","week_end":"2023-10-21"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.24","percent_visits_covid":"1.24","percent_visits_influenza":"2.2","percent_visits_rsv":"0.82","week_end":"2023-10-28"}
-,{"county":"Sarasota","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"3.97","percent_visits_covid":"1.18","percent_visits_influenza":"2.17","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.09","percent_visits_covid":"1.18","percent_visits_influenza":"2.36","percent_visits_rsv":"0.55","week_end":"2023-11-11"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.39","percent_visits_covid":"1.06","percent_visits_influenza":"2.82","percent_visits_rsv":"0.55","week_end":"2023-11-18"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.92","percent_visits_covid":"1.34","percent_visits_influenza":"3.15","percent_visits_rsv":"0.49","week_end":"2023-11-25"}
-,{"county":"Sarasota","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Sarasota (Sarasota), FL - Charlotte, FL","hsa_counties":"Charlotte, DeSoto, Sarasota","percent_visits_combined":"4.4","percent_visits_covid":"1.3","percent_visits_influenza":"2.66","percent_visits_rsv":"0.5","week_end":"2023-12-02"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.01","percent_visits_covid":"1.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.84","week_end":"2022-10-01"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.17","percent_visits_covid":"1.33","percent_visits_influenza":"0.35","percent_visits_rsv":"0.5","week_end":"2022-10-08"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.04","percent_visits_covid":"1.14","percent_visits_influenza":"0.52","percent_visits_rsv":"0.39","week_end":"2022-10-15"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.17","percent_visits_influenza":"0.92","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.69","percent_visits_covid":"1.24","percent_visits_influenza":"1.92","percent_visits_rsv":"0.55","week_end":"2022-10-29"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.56","percent_visits_covid":"1.24","percent_visits_influenza":"2.94","percent_visits_rsv":"0.42","week_end":"2022-11-05"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.62","percent_visits_covid":"1.39","percent_visits_influenza":"3.77","percent_visits_rsv":"0.51","week_end":"2022-11-12"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"1.29","percent_visits_influenza":"3.02","percent_visits_rsv":"0.41","week_end":"2022-11-19"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.93","percent_visits_covid":"1.68","percent_visits_influenza":"3.87","percent_visits_rsv":"0.45","week_end":"2022-11-26"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.38","percent_visits_covid":"2.16","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.23","percent_visits_covid":"2.28","percent_visits_influenza":"3.73","percent_visits_rsv":"0.3","week_end":"2022-12-10"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.6","percent_visits_covid":"2.63","percent_visits_influenza":"3.85","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.19","percent_visits_covid":"2.88","percent_visits_influenza":"4.19","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"8.36","percent_visits_covid":"4.03","percent_visits_influenza":"4.22","percent_visits_rsv":"0.26","week_end":"2022-12-31"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.15","percent_visits_covid":"3.82","percent_visits_influenza":"3.24","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.24","percent_visits_covid":"2.99","percent_visits_influenza":"2.2","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.7","percent_visits_covid":"2.77","percent_visits_influenza":"1.85","percent_visits_rsv":"0.14","week_end":"2023-01-21"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"2.5","percent_visits_influenza":"1.42","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.46","percent_visits_covid":"2.23","percent_visits_influenza":"1.18","percent_visits_rsv":"0.1","week_end":"2023-02-04"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.84","percent_visits_covid":"1.8","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-02-11"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.57","percent_visits_covid":"1.69","percent_visits_influenza":"0.78","percent_visits_rsv":"0.1","week_end":"2023-02-18"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.13","percent_visits_covid":"1.5","percent_visits_influenza":"0.57","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.11","percent_visits_covid":"1.49","percent_visits_influenza":"0.54","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.17","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.58","percent_visits_covid":"1.18","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.14","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.8","percent_visits_covid":"1.29","percent_visits_influenza":"0.46","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.64","percent_visits_covid":"1.14","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-15"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.48","percent_visits_covid":"0.98","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.59","percent_visits_covid":"0.88","percent_visits_influenza":"0.68","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.63","percent_visits_covid":"0.85","percent_visits_influenza":"0.75","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"0.83","percent_visits_influenza":"0.83","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.73","percent_visits_covid":"0.83","percent_visits_influenza":"0.86","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.12","percent_visits_covid":"1.06","percent_visits_influenza":"1.01","percent_visits_rsv":"0.06","week_end":"2023-05-27"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.31","percent_visits_influenza":"1.16","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.21","percent_visits_covid":"1.16","percent_visits_influenza":"0.97","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.94","percent_visits_covid":"1.18","percent_visits_influenza":"0.74","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.05","percent_visits_covid":"1.29","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.09","percent_visits_covid":"1.37","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-07-01"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.36","percent_visits_covid":"1.62","percent_visits_influenza":"0.71","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.54","percent_visits_covid":"1.89","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.0","percent_visits_covid":"2.35","percent_visits_influenza":"0.59","percent_visits_rsv":"0.07","week_end":"2023-07-22"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.49","percent_visits_covid":"2.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-07-29"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.98","percent_visits_covid":"3.43","percent_visits_influenza":"0.51","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.23","percent_visits_covid":"3.75","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.86","percent_visits_covid":"4.25","percent_visits_influenza":"0.51","percent_visits_rsv":"0.13","week_end":"2023-08-19"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.72","percent_visits_covid":"4.94","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.61","percent_visits_covid":"4.66","percent_visits_influenza":"0.82","percent_visits_rsv":"0.16","week_end":"2023-09-02"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"3.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-09"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.75","percent_visits_covid":"2.8","percent_visits_influenza":"0.77","percent_visits_rsv":"0.21","week_end":"2023-09-16"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.43","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.35","week_end":"2023-09-23"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.36","percent_visits_covid":"1.81","percent_visits_influenza":"1.17","percent_visits_rsv":"0.4","week_end":"2023-09-30"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.32","percent_visits_covid":"1.43","percent_visits_influenza":"1.38","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.59","percent_visits_covid":"1.3","percent_visits_influenza":"1.66","percent_visits_rsv":"0.65","week_end":"2023-10-14"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.82","percent_visits_covid":"1.22","percent_visits_influenza":"1.8","percent_visits_rsv":"0.84","week_end":"2023-10-21"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"1.21","percent_visits_influenza":"2.01","percent_visits_rsv":"0.83","week_end":"2023-10-28"}
-,{"county":"Seminole","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.48","percent_visits_covid":"0.91","percent_visits_influenza":"2.75","percent_visits_rsv":"0.86","week_end":"2023-11-04"}
-,{"county":"Seminole","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.03","percent_visits_covid":"0.91","percent_visits_influenza":"3.21","percent_visits_rsv":"0.97","week_end":"2023-11-11"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.43","percent_visits_covid":"1.03","percent_visits_influenza":"3.59","percent_visits_rsv":"0.88","week_end":"2023-11-18"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.18","percent_visits_covid":"1.15","percent_visits_influenza":"4.28","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Seminole","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.22","percent_visits_covid":"1.28","percent_visits_influenza":"4.29","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.12","percent_visits_covid":"1.2","percent_visits_influenza":"0.52","percent_visits_rsv":"0.4","week_end":"2022-10-01"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.74","percent_visits_covid":"1.36","percent_visits_influenza":"0.27","percent_visits_rsv":"0.11","week_end":"2022-10-08"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.49","percent_visits_covid":"1.5","percent_visits_influenza":"0.88","percent_visits_rsv":"0.16","week_end":"2022-10-15"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.12","percent_visits_covid":"1.14","percent_visits_influenza":"0.65","percent_visits_rsv":"0.38","week_end":"2022-10-22"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.09","percent_visits_covid":"1.33","percent_visits_influenza":"1.6","percent_visits_rsv":"0.21","week_end":"2022-10-29"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.62","percent_visits_covid":"1.38","percent_visits_influenza":"2.09","percent_visits_rsv":"0.26","week_end":"2022-11-05"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"5.14","percent_visits_covid":"1.61","percent_visits_influenza":"3.17","percent_visits_rsv":"0.36","week_end":"2022-11-12"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"5.52","percent_visits_covid":"1.41","percent_visits_influenza":"4.17","percent_visits_rsv":"0.05","week_end":"2022-11-19"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.17","percent_visits_covid":"1.58","percent_visits_influenza":"6.49","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"6.81","percent_visits_covid":"1.61","percent_visits_influenza":"5.3","percent_visits_rsv":"0.0","week_end":"2022-12-03"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.12","percent_visits_covid":"2.03","percent_visits_influenza":"6.09","percent_visits_rsv":"0.1","week_end":"2022-12-10"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.38","percent_visits_covid":"2.02","percent_visits_influenza":"6.31","percent_visits_rsv":"0.05","week_end":"2022-12-17"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.86","percent_visits_covid":"2.63","percent_visits_influenza":"6.11","percent_visits_rsv":"0.17","week_end":"2022-12-24"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"8.28","percent_visits_covid":"3.83","percent_visits_influenza":"4.55","percent_visits_rsv":"0.05","week_end":"2022-12-31"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"5.79","percent_visits_covid":"3.25","percent_visits_influenza":"2.34","percent_visits_rsv":"0.2","week_end":"2023-01-07"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.68","percent_visits_covid":"1.58","percent_visits_influenza":"1.09","percent_visits_rsv":"0.0","week_end":"2023-01-14"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.06","percent_visits_covid":"2.5","percent_visits_influenza":"0.5","percent_visits_rsv":"0.06","week_end":"2023-01-21"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.04","percent_visits_covid":"2.48","percent_visits_influenza":"0.5","percent_visits_rsv":"0.06","week_end":"2023-01-28"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.16","percent_visits_covid":"2.43","percent_visits_influenza":"0.73","percent_visits_rsv":"0.0","week_end":"2023-02-04"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.08","percent_visits_covid":"2.07","percent_visits_influenza":"1.01","percent_visits_rsv":"0.0","week_end":"2023-02-11"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.5","percent_visits_covid":"2.58","percent_visits_influenza":"0.93","percent_visits_rsv":"0.05","week_end":"2023-02-18"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.01","percent_visits_covid":"1.6","percent_visits_influenza":"0.41","percent_visits_rsv":"0.0","week_end":"2023-02-25"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.85","percent_visits_covid":"1.65","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-03-04"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.1","percent_visits_covid":"0.84","percent_visits_influenza":"0.26","percent_visits_rsv":"0.0","week_end":"2023-03-11"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.24","percent_visits_covid":"0.96","percent_visits_influenza":"0.34","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.59","percent_visits_covid":"1.22","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-03-25"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.11","percent_visits_covid":"1.0","percent_visits_influenza":"0.11","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.96","percent_visits_covid":"0.81","percent_visits_influenza":"0.15","percent_visits_rsv":"0.05","week_end":"2023-04-08"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.97","percent_visits_covid":"0.81","percent_visits_influenza":"0.16","percent_visits_rsv":"0.0","week_end":"2023-04-15"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.92","percent_visits_covid":"0.49","percent_visits_influenza":"0.38","percent_visits_rsv":"0.05","week_end":"2023-04-22"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.94","percent_visits_covid":"0.57","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-04-29"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.1","percent_visits_covid":"0.77","percent_visits_influenza":"0.16","percent_visits_rsv":"0.16","week_end":"2023-05-06"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.0","percent_visits_covid":"0.58","percent_visits_influenza":"0.42","percent_visits_rsv":"0.0","week_end":"2023-05-13"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.02","percent_visits_covid":"0.72","percent_visits_influenza":"0.31","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.45","percent_visits_covid":"1.13","percent_visits_influenza":"0.32","percent_visits_rsv":"0.0","week_end":"2023-05-27"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.48","percent_visits_covid":"0.53","percent_visits_influenza":"0.9","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.47","percent_visits_covid":"1.09","percent_visits_influenza":"0.38","percent_visits_rsv":"0.0","week_end":"2023-06-10"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.9","percent_visits_covid":"0.51","percent_visits_influenza":"0.39","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"0.9","percent_visits_covid":"0.45","percent_visits_influenza":"0.45","percent_visits_rsv":"0.0","week_end":"2023-06-24"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.62","percent_visits_covid":"1.46","percent_visits_influenza":"0.17","percent_visits_rsv":"0.0","week_end":"2023-07-01"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"1.39","percent_visits_covid":"1.24","percent_visits_influenza":"0.15","percent_visits_rsv":"0.0","week_end":"2023-07-08"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.66","percent_visits_covid":"1.95","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-15"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.66","percent_visits_covid":"2.11","percent_visits_influenza":"0.55","percent_visits_rsv":"0.0","week_end":"2023-07-22"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.0","percent_visits_covid":"2.77","percent_visits_influenza":"0.34","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.52","percent_visits_covid":"2.98","percent_visits_influenza":"0.6","percent_visits_rsv":"0.11","week_end":"2023-08-05"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.33","percent_visits_covid":"2.75","percent_visits_influenza":"0.53","percent_visits_rsv":"0.05","week_end":"2023-08-12"}
-,{"county":"St. Johns","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.61","percent_visits_covid":"3.78","percent_visits_influenza":"0.67","percent_visits_rsv":"0.16","week_end":"2023-08-19"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"6.42","percent_visits_covid":"5.01","percent_visits_influenza":"1.36","percent_visits_rsv":"0.15","week_end":"2023-08-26"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"6.16","percent_visits_covid":"4.67","percent_visits_influenza":"1.23","percent_visits_rsv":"0.26","week_end":"2023-09-02"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.6","percent_visits_covid":"3.14","percent_visits_influenza":"1.46","percent_visits_rsv":"0.1","week_end":"2023-09-09"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.14","percent_visits_covid":"2.43","percent_visits_influenza":"1.5","percent_visits_rsv":"0.26","week_end":"2023-09-16"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.61","percent_visits_covid":"1.25","percent_visits_influenza":"1.04","percent_visits_rsv":"0.36","week_end":"2023-09-23"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"2.96","percent_visits_covid":"0.81","percent_visits_influenza":"1.96","percent_visits_rsv":"0.24","week_end":"2023-09-30"}
-,{"county":"St. Johns","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.86","percent_visits_covid":"1.38","percent_visits_influenza":"2.07","percent_visits_rsv":"0.51","week_end":"2023-10-07"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.43","percent_visits_covid":"0.89","percent_visits_influenza":"2.23","percent_visits_rsv":"0.3","week_end":"2023-10-14"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.23","percent_visits_covid":"0.95","percent_visits_influenza":"2.09","percent_visits_rsv":"0.33","week_end":"2023-10-21"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.3","percent_visits_covid":"0.86","percent_visits_influenza":"1.72","percent_visits_rsv":"0.81","week_end":"2023-10-28"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"3.21","percent_visits_covid":"0.89","percent_visits_influenza":"1.69","percent_visits_rsv":"0.67","week_end":"2023-11-04"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"5.6","percent_visits_covid":"1.12","percent_visits_influenza":"4.29","percent_visits_rsv":"0.37","week_end":"2023-11-11"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.5","percent_visits_covid":"0.98","percent_visits_influenza":"3.3","percent_visits_rsv":"0.31","week_end":"2023-11-18"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.51","percent_visits_covid":"0.91","percent_visits_influenza":"3.31","percent_visits_rsv":"0.34","week_end":"2023-11-25"}
-,{"county":"St. Johns","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"St. Johns (St. Augustine), FL - Putnam, FL","hsa_counties":"Putnam, St. Johns","percent_visits_combined":"4.64","percent_visits_covid":"0.8","percent_visits_influenza":"3.75","percent_visits_rsv":"0.13","week_end":"2023-12-02"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.0","percent_visits_covid":"1.81","percent_visits_influenza":"0.47","percent_visits_rsv":"0.73","week_end":"2022-10-01"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.36","percent_visits_covid":"1.34","percent_visits_influenza":"0.43","percent_visits_rsv":"0.61","week_end":"2022-10-08"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.46","percent_visits_covid":"1.28","percent_visits_influenza":"0.58","percent_visits_rsv":"0.63","week_end":"2022-10-15"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.42","percent_visits_covid":"1.14","percent_visits_influenza":"0.69","percent_visits_rsv":"0.6","week_end":"2022-10-22"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.95","percent_visits_covid":"1.29","percent_visits_influenza":"0.96","percent_visits_rsv":"0.73","week_end":"2022-10-29"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.38","percent_visits_covid":"1.39","percent_visits_influenza":"1.31","percent_visits_rsv":"0.71","week_end":"2022-11-05"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.68","percent_visits_covid":"1.32","percent_visits_influenza":"1.75","percent_visits_rsv":"0.64","week_end":"2022-11-12"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.18","percent_visits_covid":"1.34","percent_visits_influenza":"1.4","percent_visits_rsv":"0.46","week_end":"2022-11-19"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.72","percent_visits_covid":"1.54","percent_visits_influenza":"1.86","percent_visits_rsv":"0.38","week_end":"2022-11-26"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.7","percent_visits_covid":"2.21","percent_visits_influenza":"2.16","percent_visits_rsv":"0.38","week_end":"2022-12-03"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.29","percent_visits_covid":"2.3","percent_visits_influenza":"2.8","percent_visits_rsv":"0.26","week_end":"2022-12-10"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"6.35","percent_visits_covid":"2.53","percent_visits_influenza":"3.75","percent_visits_rsv":"0.2","week_end":"2022-12-17"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"6.77","percent_visits_covid":"3.0","percent_visits_influenza":"3.7","percent_visits_rsv":"0.2","week_end":"2022-12-24"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"7.3","percent_visits_covid":"4.09","percent_visits_influenza":"3.12","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.91","percent_visits_covid":"3.62","percent_visits_influenza":"2.24","percent_visits_rsv":"0.16","week_end":"2023-01-07"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.82","percent_visits_covid":"3.12","percent_visits_influenza":"1.6","percent_visits_rsv":"0.15","week_end":"2023-01-14"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.57","percent_visits_covid":"2.95","percent_visits_influenza":"1.5","percent_visits_rsv":"0.18","week_end":"2023-01-21"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.21","percent_visits_covid":"2.86","percent_visits_influenza":"1.24","percent_visits_rsv":"0.16","week_end":"2023-01-28"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.72","percent_visits_covid":"2.42","percent_visits_influenza":"1.15","percent_visits_rsv":"0.17","week_end":"2023-02-04"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.13","percent_visits_covid":"2.19","percent_visits_influenza":"0.84","percent_visits_rsv":"0.13","week_end":"2023-02-11"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.74","percent_visits_covid":"1.96","percent_visits_influenza":"0.74","percent_visits_rsv":"0.07","week_end":"2023-02-18"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.52","percent_visits_covid":"1.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.3","percent_visits_covid":"1.49","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-03-04"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.04","percent_visits_covid":"1.38","percent_visits_influenza":"0.62","percent_visits_rsv":"0.07","week_end":"2023-03-11"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.77","percent_visits_covid":"1.15","percent_visits_influenza":"0.56","percent_visits_rsv":"0.09","week_end":"2023-03-18"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.24","percent_visits_influenza":"0.56","percent_visits_rsv":"0.07","week_end":"2023-03-25"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.6","percent_visits_covid":"1.13","percent_visits_influenza":"0.45","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.06","percent_visits_covid":"1.35","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.12","percent_visits_influenza":"0.63","percent_visits_rsv":"0.09","week_end":"2023-04-15"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.72","percent_visits_covid":"1.05","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-22"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.69","percent_visits_rsv":"0.1","week_end":"2023-04-29"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.98","percent_visits_covid":"1.08","percent_visits_influenza":"0.84","percent_visits_rsv":"0.07","week_end":"2023-05-06"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.87","percent_visits_covid":"1.04","percent_visits_influenza":"0.82","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"1.93","percent_visits_covid":"1.02","percent_visits_influenza":"0.84","percent_visits_rsv":"0.08","week_end":"2023-05-20"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.11","percent_visits_covid":"1.1","percent_visits_influenza":"0.95","percent_visits_rsv":"0.07","week_end":"2023-05-27"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.64","percent_visits_covid":"1.22","percent_visits_influenza":"1.31","percent_visits_rsv":"0.13","week_end":"2023-06-03"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.45","percent_visits_covid":"1.27","percent_visits_influenza":"1.02","percent_visits_rsv":"0.17","week_end":"2023-06-10"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.48","percent_visits_covid":"1.32","percent_visits_influenza":"1.05","percent_visits_rsv":"0.14","week_end":"2023-06-17"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.63","percent_visits_covid":"1.48","percent_visits_influenza":"1.07","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.51","percent_visits_covid":"1.31","percent_visits_influenza":"1.08","percent_visits_rsv":"0.13","week_end":"2023-07-01"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.77","percent_visits_covid":"1.63","percent_visits_influenza":"0.97","percent_visits_rsv":"0.19","week_end":"2023-07-08"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"2.66","percent_visits_covid":"1.81","percent_visits_influenza":"0.68","percent_visits_rsv":"0.21","week_end":"2023-07-15"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.16","percent_visits_covid":"2.36","percent_visits_influenza":"0.66","percent_visits_rsv":"0.17","week_end":"2023-07-22"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.55","percent_visits_covid":"2.73","percent_visits_influenza":"0.66","percent_visits_rsv":"0.19","week_end":"2023-07-29"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.12","percent_visits_covid":"3.27","percent_visits_influenza":"0.74","percent_visits_rsv":"0.2","week_end":"2023-08-05"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.78","percent_visits_covid":"3.97","percent_visits_influenza":"0.75","percent_visits_rsv":"0.12","week_end":"2023-08-12"}
-,{"county":"St. Lucie","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.95","percent_visits_covid":"4.13","percent_visits_influenza":"0.68","percent_visits_rsv":"0.22","week_end":"2023-08-19"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.36","percent_visits_covid":"4.26","percent_visits_influenza":"0.81","percent_visits_rsv":"0.34","week_end":"2023-08-26"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.91","percent_visits_covid":"3.71","percent_visits_influenza":"0.91","percent_visits_rsv":"0.34","week_end":"2023-09-02"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.83","percent_visits_covid":"3.29","percent_visits_influenza":"1.19","percent_visits_rsv":"0.47","week_end":"2023-09-09"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.78","percent_visits_covid":"2.07","percent_visits_influenza":"1.34","percent_visits_rsv":"0.4","week_end":"2023-09-16"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.56","percent_visits_covid":"1.65","percent_visits_influenza":"1.51","percent_visits_rsv":"0.5","week_end":"2023-09-23"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.5","percent_visits_covid":"1.19","percent_visits_influenza":"1.73","percent_visits_rsv":"0.61","week_end":"2023-09-30"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.78","percent_visits_covid":"1.02","percent_visits_influenza":"2.08","percent_visits_rsv":"0.76","week_end":"2023-10-07"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.42","percent_visits_covid":"1.12","percent_visits_influenza":"2.45","percent_visits_rsv":"0.91","week_end":"2023-10-14"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"4.96","percent_visits_covid":"1.01","percent_visits_influenza":"3.2","percent_visits_rsv":"0.82","week_end":"2023-10-21"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.22","percent_visits_covid":"0.78","percent_visits_influenza":"3.65","percent_visits_rsv":"0.89","week_end":"2023-10-28"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.37","percent_visits_covid":"0.76","percent_visits_influenza":"3.98","percent_visits_rsv":"0.67","week_end":"2023-11-04"}
-,{"county":"St. Lucie","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.06","percent_visits_covid":"0.65","percent_visits_influenza":"3.88","percent_visits_rsv":"0.58","week_end":"2023-11-11"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.11","percent_visits_covid":"0.7","percent_visits_influenza":"3.98","percent_visits_rsv":"0.49","week_end":"2023-11-18"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"5.07","percent_visits_covid":"0.72","percent_visits_influenza":"3.83","percent_visits_rsv":"0.59","week_end":"2023-11-25"}
-,{"county":"St. Lucie","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Palm Beach (West Palm Beach), FL - St. Lucie, FL","hsa_counties":"Martin, Okeechobee, Palm Beach, St. Lucie","percent_visits_combined":"3.8","percent_visits_covid":"0.72","percent_visits_influenza":"2.62","percent_visits_rsv":"0.5","week_end":"2023-12-02"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.01","percent_visits_covid":"1.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.84","week_end":"2022-10-01"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.17","percent_visits_covid":"1.33","percent_visits_influenza":"0.35","percent_visits_rsv":"0.5","week_end":"2022-10-08"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.04","percent_visits_covid":"1.14","percent_visits_influenza":"0.52","percent_visits_rsv":"0.39","week_end":"2022-10-15"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.17","percent_visits_influenza":"0.92","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.69","percent_visits_covid":"1.24","percent_visits_influenza":"1.92","percent_visits_rsv":"0.55","week_end":"2022-10-29"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.56","percent_visits_covid":"1.24","percent_visits_influenza":"2.94","percent_visits_rsv":"0.42","week_end":"2022-11-05"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.62","percent_visits_covid":"1.39","percent_visits_influenza":"3.77","percent_visits_rsv":"0.51","week_end":"2022-11-12"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"1.29","percent_visits_influenza":"3.02","percent_visits_rsv":"0.41","week_end":"2022-11-19"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.93","percent_visits_covid":"1.68","percent_visits_influenza":"3.87","percent_visits_rsv":"0.45","week_end":"2022-11-26"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.38","percent_visits_covid":"2.16","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.23","percent_visits_covid":"2.28","percent_visits_influenza":"3.73","percent_visits_rsv":"0.3","week_end":"2022-12-10"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.6","percent_visits_covid":"2.63","percent_visits_influenza":"3.85","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.19","percent_visits_covid":"2.88","percent_visits_influenza":"4.19","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"8.36","percent_visits_covid":"4.03","percent_visits_influenza":"4.22","percent_visits_rsv":"0.26","week_end":"2022-12-31"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.15","percent_visits_covid":"3.82","percent_visits_influenza":"3.24","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.24","percent_visits_covid":"2.99","percent_visits_influenza":"2.2","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.7","percent_visits_covid":"2.77","percent_visits_influenza":"1.85","percent_visits_rsv":"0.14","week_end":"2023-01-21"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"2.5","percent_visits_influenza":"1.42","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.46","percent_visits_covid":"2.23","percent_visits_influenza":"1.18","percent_visits_rsv":"0.1","week_end":"2023-02-04"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.84","percent_visits_covid":"1.8","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-02-11"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.57","percent_visits_covid":"1.69","percent_visits_influenza":"0.78","percent_visits_rsv":"0.1","week_end":"2023-02-18"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.13","percent_visits_covid":"1.5","percent_visits_influenza":"0.57","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.11","percent_visits_covid":"1.49","percent_visits_influenza":"0.54","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.17","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.58","percent_visits_covid":"1.18","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.14","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.8","percent_visits_covid":"1.29","percent_visits_influenza":"0.46","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.64","percent_visits_covid":"1.14","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-15"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.48","percent_visits_covid":"0.98","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.59","percent_visits_covid":"0.88","percent_visits_influenza":"0.68","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.63","percent_visits_covid":"0.85","percent_visits_influenza":"0.75","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"0.83","percent_visits_influenza":"0.83","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.73","percent_visits_covid":"0.83","percent_visits_influenza":"0.86","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.12","percent_visits_covid":"1.06","percent_visits_influenza":"1.01","percent_visits_rsv":"0.06","week_end":"2023-05-27"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.31","percent_visits_influenza":"1.16","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.21","percent_visits_covid":"1.16","percent_visits_influenza":"0.97","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.94","percent_visits_covid":"1.18","percent_visits_influenza":"0.74","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.05","percent_visits_covid":"1.29","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.09","percent_visits_covid":"1.37","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-07-01"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.36","percent_visits_covid":"1.62","percent_visits_influenza":"0.71","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.54","percent_visits_covid":"1.89","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.0","percent_visits_covid":"2.35","percent_visits_influenza":"0.59","percent_visits_rsv":"0.07","week_end":"2023-07-22"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.49","percent_visits_covid":"2.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-07-29"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.98","percent_visits_covid":"3.43","percent_visits_influenza":"0.51","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.23","percent_visits_covid":"3.75","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.86","percent_visits_covid":"4.25","percent_visits_influenza":"0.51","percent_visits_rsv":"0.13","week_end":"2023-08-19"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.72","percent_visits_covid":"4.94","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.61","percent_visits_covid":"4.66","percent_visits_influenza":"0.82","percent_visits_rsv":"0.16","week_end":"2023-09-02"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"3.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-09"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.75","percent_visits_covid":"2.8","percent_visits_influenza":"0.77","percent_visits_rsv":"0.21","week_end":"2023-09-16"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.43","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.35","week_end":"2023-09-23"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.36","percent_visits_covid":"1.81","percent_visits_influenza":"1.17","percent_visits_rsv":"0.4","week_end":"2023-09-30"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.32","percent_visits_covid":"1.43","percent_visits_influenza":"1.38","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.59","percent_visits_covid":"1.3","percent_visits_influenza":"1.66","percent_visits_rsv":"0.65","week_end":"2023-10-14"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.82","percent_visits_covid":"1.22","percent_visits_influenza":"1.8","percent_visits_rsv":"0.84","week_end":"2023-10-21"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"1.21","percent_visits_influenza":"2.01","percent_visits_rsv":"0.83","week_end":"2023-10-28"}
-,{"county":"Sumter","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.48","percent_visits_covid":"0.91","percent_visits_influenza":"2.75","percent_visits_rsv":"0.86","week_end":"2023-11-04"}
-,{"county":"Sumter","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.03","percent_visits_covid":"0.91","percent_visits_influenza":"3.21","percent_visits_rsv":"0.97","week_end":"2023-11-11"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.43","percent_visits_covid":"1.03","percent_visits_influenza":"3.59","percent_visits_rsv":"0.88","week_end":"2023-11-18"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.18","percent_visits_covid":"1.15","percent_visits_influenza":"4.28","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Sumter","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.22","percent_visits_covid":"1.28","percent_visits_influenza":"4.29","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Suwannee","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Suwannee","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Suwannee","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.01","percent_visits_covid":"0.54","percent_visits_influenza":"1.35","percent_visits_rsv":"0.12","week_end":"2022-10-01"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.02","percent_visits_covid":"0.37","percent_visits_influenza":"1.57","percent_visits_rsv":"0.08","week_end":"2022-10-08"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.71","percent_visits_rsv":"0.1","week_end":"2022-10-15"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.36","percent_visits_influenza":"3.32","percent_visits_rsv":"0.18","week_end":"2022-10-22"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.16","percent_visits_covid":"0.45","percent_visits_influenza":"6.55","percent_visits_rsv":"0.25","week_end":"2022-10-29"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.71","percent_visits_covid":"0.38","percent_visits_influenza":"7.2","percent_visits_rsv":"0.27","week_end":"2022-11-05"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"0.47","percent_visits_influenza":"5.93","percent_visits_rsv":"0.11","week_end":"2022-11-12"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.14","percent_visits_covid":"0.51","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-11-19"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.18","percent_visits_covid":"0.79","percent_visits_influenza":"3.33","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.95","percent_visits_covid":"0.73","percent_visits_influenza":"3.09","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.75","percent_visits_covid":"1.36","percent_visits_influenza":"2.29","percent_visits_rsv":"0.23","week_end":"2022-12-10"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.15","percent_visits_covid":"1.56","percent_visits_influenza":"2.35","percent_visits_rsv":"0.38","week_end":"2022-12-17"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.24","percent_visits_covid":"2.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.33","week_end":"2022-12-24"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.71","percent_visits_influenza":"1.92","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.76","percent_visits_covid":"2.86","percent_visits_influenza":"1.71","percent_visits_rsv":"0.23","week_end":"2023-01-07"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.12","percent_visits_covid":"3.63","percent_visits_influenza":"1.45","percent_visits_rsv":"0.18","week_end":"2023-01-14"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.85","percent_visits_influenza":"1.62","percent_visits_rsv":"0.23","week_end":"2023-01-21"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.63","percent_visits_covid":"3.24","percent_visits_influenza":"1.14","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.71","percent_visits_covid":"2.49","percent_visits_influenza":"1.1","percent_visits_rsv":"0.16","week_end":"2023-02-04"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.04","percent_visits_covid":"2.3","percent_visits_influenza":"1.48","percent_visits_rsv":"0.32","week_end":"2023-02-11"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.0","percent_visits_covid":"2.84","percent_visits_influenza":"1.01","percent_visits_rsv":"0.24","week_end":"2023-02-18"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.83","percent_visits_covid":"1.96","percent_visits_influenza":"0.78","percent_visits_rsv":"0.17","week_end":"2023-02-25"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.96","percent_visits_covid":"1.3","percent_visits_influenza":"0.66","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.37","percent_visits_covid":"1.2","percent_visits_influenza":"0.9","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.2","percent_visits_influenza":"0.71","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.5","percent_visits_covid":"1.53","percent_visits_influenza":"0.87","percent_visits_rsv":"0.17","week_end":"2023-03-25"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.0","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"1.29","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.95","percent_visits_covid":"1.15","percent_visits_influenza":"0.8","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.65","percent_visits_rsv":"0.15","week_end":"2023-04-22"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.92","percent_visits_covid":"0.69","percent_visits_influenza":"1.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.68","percent_visits_covid":"0.84","percent_visits_influenza":"0.82","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.56","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.98","percent_visits_covid":"0.47","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-05-20"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.97","percent_visits_covid":"0.48","percent_visits_influenza":"0.38","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.54","percent_visits_covid":"0.72","percent_visits_influenza":"0.74","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.23","percent_visits_covid":"0.55","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.21","percent_visits_covid":"0.53","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.45","percent_visits_covid":"0.54","percent_visits_influenza":"0.84","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"0.85","percent_visits_influenza":"0.98","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.06","percent_visits_covid":"1.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.09","percent_visits_influenza":"0.85","percent_visits_rsv":"0.16","week_end":"2023-07-15"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.8","percent_visits_covid":"1.87","percent_visits_influenza":"0.81","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.27","percent_visits_covid":"2.44","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.05","percent_visits_covid":"3.19","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-05"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.65","percent_visits_covid":"3.62","percent_visits_influenza":"0.9","percent_visits_rsv":"0.23","week_end":"2023-08-12"}
-,{"county":"Taylor","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.81","percent_visits_covid":"3.71","percent_visits_influenza":"1.01","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"5.1","percent_visits_influenza":"1.19","percent_visits_rsv":"0.35","week_end":"2023-08-26"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.8","percent_visits_covid":"4.3","percent_visits_influenza":"1.14","percent_visits_rsv":"0.45","week_end":"2023-09-02"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.08","percent_visits_covid":"3.34","percent_visits_influenza":"1.45","percent_visits_rsv":"0.37","week_end":"2023-09-09"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.03","percent_visits_covid":"2.73","percent_visits_influenza":"1.05","percent_visits_rsv":"0.36","week_end":"2023-09-16"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.94","percent_visits_covid":"1.88","percent_visits_influenza":"1.27","percent_visits_rsv":"0.84","week_end":"2023-09-23"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.46","percent_visits_covid":"1.72","percent_visits_influenza":"1.64","percent_visits_rsv":"1.19","week_end":"2023-09-30"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.44","percent_visits_covid":"0.98","percent_visits_influenza":"1.4","percent_visits_rsv":"1.09","week_end":"2023-10-07"}
-,{"county":"Taylor","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.72","percent_visits_influenza":"2.13","percent_visits_rsv":"1.04","week_end":"2023-10-14"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.56","percent_visits_covid":"0.89","percent_visits_influenza":"2.47","percent_visits_rsv":"1.28","week_end":"2023-10-21"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.93","percent_visits_covid":"1.07","percent_visits_influenza":"2.62","percent_visits_rsv":"1.41","week_end":"2023-10-28"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.0","percent_visits_covid":"0.76","percent_visits_influenza":"2.75","percent_visits_rsv":"1.58","week_end":"2023-11-04"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.12","percent_visits_covid":"0.84","percent_visits_influenza":"3.96","percent_visits_rsv":"1.46","week_end":"2023-11-11"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.87","percent_visits_covid":"0.87","percent_visits_influenza":"4.92","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.97","percent_visits_covid":"0.95","percent_visits_influenza":"4.34","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Taylor","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.93","percent_visits_covid":"0.66","percent_visits_influenza":"4.54","percent_visits_rsv":"0.88","week_end":"2023-12-02"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.27","percent_visits_covid":"2.02","percent_visits_influenza":"0.69","percent_visits_rsv":"0.61","week_end":"2022-10-01"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.0","percent_visits_covid":"1.13","percent_visits_influenza":"0.4","percent_visits_rsv":"0.48","week_end":"2022-10-08"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.03","percent_visits_covid":"0.7","percent_visits_influenza":"0.75","percent_visits_rsv":"0.61","week_end":"2022-10-15"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.55","percent_visits_covid":"0.9","percent_visits_influenza":"1.06","percent_visits_rsv":"0.65","week_end":"2022-10-22"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.77","percent_visits_covid":"1.41","percent_visits_influenza":"2.02","percent_visits_rsv":"0.37","week_end":"2022-10-29"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.96","percent_visits_covid":"1.26","percent_visits_influenza":"3.41","percent_visits_rsv":"0.38","week_end":"2022-11-05"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.04","percent_visits_covid":"1.14","percent_visits_influenza":"4.63","percent_visits_rsv":"0.34","week_end":"2022-11-12"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.28","percent_visits_covid":"0.8","percent_visits_influenza":"3.23","percent_visits_rsv":"0.29","week_end":"2022-11-19"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.58","percent_visits_covid":"1.17","percent_visits_influenza":"4.31","percent_visits_rsv":"0.19","week_end":"2022-11-26"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.43","percent_visits_covid":"1.35","percent_visits_influenza":"3.93","percent_visits_rsv":"0.21","week_end":"2022-12-03"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.54","percent_visits_covid":"1.92","percent_visits_influenza":"3.52","percent_visits_rsv":"0.2","week_end":"2022-12-10"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"1.94","percent_visits_influenza":"4.04","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.89","percent_visits_covid":"2.52","percent_visits_influenza":"4.3","percent_visits_rsv":"0.12","week_end":"2022-12-24"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.68","percent_visits_covid":"3.12","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-12-31"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.77","percent_visits_covid":"4.16","percent_visits_influenza":"2.58","percent_visits_rsv":"0.12","week_end":"2023-01-07"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.67","percent_visits_covid":"4.19","percent_visits_influenza":"1.66","percent_visits_rsv":"0.02","week_end":"2023-01-14"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"3.81","percent_visits_influenza":"1.6","percent_visits_rsv":"0.03","week_end":"2023-01-21"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.84","percent_visits_covid":"3.54","percent_visits_influenza":"1.38","percent_visits_rsv":"0.03","week_end":"2023-01-28"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.01","percent_visits_covid":"3.62","percent_visits_influenza":"1.53","percent_visits_rsv":"0.02","week_end":"2023-02-04"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.67","percent_visits_covid":"3.8","percent_visits_influenza":"0.84","percent_visits_rsv":"0.06","week_end":"2023-02-11"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.36","percent_visits_covid":"2.57","percent_visits_influenza":"0.79","percent_visits_rsv":"0.02","week_end":"2023-02-18"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.88","percent_visits_influenza":"0.63","percent_visits_rsv":"0.03","week_end":"2023-02-25"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.49","percent_visits_covid":"1.75","percent_visits_influenza":"0.74","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.7","percent_visits_covid":"0.95","percent_visits_influenza":"0.7","percent_visits_rsv":"0.05","week_end":"2023-03-11"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.74","percent_visits_covid":"1.18","percent_visits_influenza":"0.58","percent_visits_rsv":"0.0","week_end":"2023-03-18"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.2","percent_visits_covid":"1.34","percent_visits_influenza":"0.86","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.36","percent_visits_covid":"0.83","percent_visits_influenza":"0.56","percent_visits_rsv":"0.0","week_end":"2023-04-01"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.45","percent_visits_covid":"0.96","percent_visits_influenza":"0.5","percent_visits_rsv":"0.02","week_end":"2023-04-08"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.6","percent_visits_covid":"0.92","percent_visits_influenza":"0.63","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.22","percent_visits_covid":"0.87","percent_visits_influenza":"0.35","percent_visits_rsv":"0.02","week_end":"2023-04-22"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.08","percent_visits_covid":"0.55","percent_visits_influenza":"0.52","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.32","percent_visits_covid":"0.89","percent_visits_influenza":"0.45","percent_visits_rsv":"0.03","week_end":"2023-05-06"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.02","percent_visits_covid":"0.55","percent_visits_influenza":"0.54","percent_visits_rsv":"0.02","week_end":"2023-05-13"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.1","percent_visits_covid":"0.52","percent_visits_influenza":"0.54","percent_visits_rsv":"0.05","week_end":"2023-05-20"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.28","percent_visits_covid":"0.57","percent_visits_influenza":"0.73","percent_visits_rsv":"0.02","week_end":"2023-05-27"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.35","percent_visits_covid":"0.53","percent_visits_influenza":"0.83","percent_visits_rsv":"0.0","week_end":"2023-06-03"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.61","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-06-10"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.23","percent_visits_covid":"0.6","percent_visits_influenza":"0.6","percent_visits_rsv":"0.05","week_end":"2023-06-17"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.16","percent_visits_covid":"0.57","percent_visits_influenza":"0.59","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.01","percent_visits_covid":"1.23","percent_visits_influenza":"0.76","percent_visits_rsv":"0.05","week_end":"2023-07-01"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"1.87","percent_visits_covid":"1.25","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-08"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.23","percent_visits_covid":"1.61","percent_visits_influenza":"0.62","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.52","percent_visits_covid":"1.87","percent_visits_influenza":"0.62","percent_visits_rsv":"0.05","week_end":"2023-07-22"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.24","percent_visits_covid":"2.47","percent_visits_influenza":"0.77","percent_visits_rsv":"0.07","week_end":"2023-07-29"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.14","percent_visits_covid":"2.47","percent_visits_influenza":"0.72","percent_visits_rsv":"0.03","week_end":"2023-08-05"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.72","percent_visits_covid":"3.82","percent_visits_influenza":"0.95","percent_visits_rsv":"0.03","week_end":"2023-08-12"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.63","percent_visits_covid":"4.04","percent_visits_influenza":"0.53","percent_visits_rsv":"0.12","week_end":"2023-08-19"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.11","percent_visits_covid":"5.31","percent_visits_influenza":"0.86","percent_visits_rsv":"0.07","week_end":"2023-08-26"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.56","percent_visits_covid":"4.67","percent_visits_influenza":"0.92","percent_visits_rsv":"0.1","week_end":"2023-09-02"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.8","percent_visits_covid":"3.78","percent_visits_influenza":"1.05","percent_visits_rsv":"0.12","week_end":"2023-09-09"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.22","percent_visits_covid":"2.06","percent_visits_influenza":"0.9","percent_visits_rsv":"0.3","week_end":"2023-09-16"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.96","percent_visits_covid":"1.51","percent_visits_influenza":"1.2","percent_visits_rsv":"0.3","week_end":"2023-09-23"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"2.84","percent_visits_covid":"1.14","percent_visits_influenza":"1.21","percent_visits_rsv":"0.52","week_end":"2023-09-30"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.17","percent_visits_covid":"0.93","percent_visits_influenza":"1.58","percent_visits_rsv":"0.71","week_end":"2023-10-07"}
-,{"county":"Union","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"3.57","percent_visits_covid":"0.79","percent_visits_influenza":"2.14","percent_visits_rsv":"0.68","week_end":"2023-10-14"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.45","percent_visits_covid":"0.77","percent_visits_influenza":"3.07","percent_visits_rsv":"0.72","week_end":"2023-10-21"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"4.33","percent_visits_covid":"0.54","percent_visits_influenza":"2.98","percent_visits_rsv":"0.87","week_end":"2023-10-28"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.33","percent_visits_covid":"0.58","percent_visits_influenza":"3.94","percent_visits_rsv":"0.9","week_end":"2023-11-04"}
-,{"county":"Union","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.13","percent_visits_covid":"0.74","percent_visits_influenza":"4.75","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"6.76","percent_visits_covid":"0.92","percent_visits_influenza":"5.33","percent_visits_rsv":"0.61","week_end":"2023-11-18"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.77","percent_visits_covid":"0.82","percent_visits_influenza":"4.53","percent_visits_rsv":"0.5","week_end":"2023-11-25"}
-,{"county":"Union","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Alachua (Gainesville), FL - Columbia, FL","hsa_counties":"Alachua, Bradford, Columbia, Dixie, Gilchrist, Hamilton, Lafayette, Levy, Suwannee, Union","percent_visits_combined":"5.59","percent_visits_covid":"0.87","percent_visits_influenza":"4.33","percent_visits_rsv":"0.47","week_end":"2023-12-02"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.01","percent_visits_covid":"1.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.84","week_end":"2022-10-01"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.17","percent_visits_covid":"1.33","percent_visits_influenza":"0.35","percent_visits_rsv":"0.5","week_end":"2022-10-08"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.04","percent_visits_covid":"1.14","percent_visits_influenza":"0.52","percent_visits_rsv":"0.39","week_end":"2022-10-15"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.17","percent_visits_influenza":"0.92","percent_visits_rsv":"0.42","week_end":"2022-10-22"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.69","percent_visits_covid":"1.24","percent_visits_influenza":"1.92","percent_visits_rsv":"0.55","week_end":"2022-10-29"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.56","percent_visits_covid":"1.24","percent_visits_influenza":"2.94","percent_visits_rsv":"0.42","week_end":"2022-11-05"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.62","percent_visits_covid":"1.39","percent_visits_influenza":"3.77","percent_visits_rsv":"0.51","week_end":"2022-11-12"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"1.29","percent_visits_influenza":"3.02","percent_visits_rsv":"0.41","week_end":"2022-11-19"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.93","percent_visits_covid":"1.68","percent_visits_influenza":"3.87","percent_visits_rsv":"0.45","week_end":"2022-11-26"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.38","percent_visits_covid":"2.16","percent_visits_influenza":"4.0","percent_visits_rsv":"0.3","week_end":"2022-12-03"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.23","percent_visits_covid":"2.28","percent_visits_influenza":"3.73","percent_visits_rsv":"0.3","week_end":"2022-12-10"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.6","percent_visits_covid":"2.63","percent_visits_influenza":"3.85","percent_visits_rsv":"0.22","week_end":"2022-12-17"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.19","percent_visits_covid":"2.88","percent_visits_influenza":"4.19","percent_visits_rsv":"0.21","week_end":"2022-12-24"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"8.36","percent_visits_covid":"4.03","percent_visits_influenza":"4.22","percent_visits_rsv":"0.26","week_end":"2022-12-31"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"7.15","percent_visits_covid":"3.82","percent_visits_influenza":"3.24","percent_visits_rsv":"0.18","week_end":"2023-01-07"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.24","percent_visits_covid":"2.99","percent_visits_influenza":"2.2","percent_visits_rsv":"0.13","week_end":"2023-01-14"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.7","percent_visits_covid":"2.77","percent_visits_influenza":"1.85","percent_visits_rsv":"0.14","week_end":"2023-01-21"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"2.5","percent_visits_influenza":"1.42","percent_visits_rsv":"0.11","week_end":"2023-01-28"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.46","percent_visits_covid":"2.23","percent_visits_influenza":"1.18","percent_visits_rsv":"0.1","week_end":"2023-02-04"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.84","percent_visits_covid":"1.8","percent_visits_influenza":"0.95","percent_visits_rsv":"0.11","week_end":"2023-02-11"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.57","percent_visits_covid":"1.69","percent_visits_influenza":"0.78","percent_visits_rsv":"0.1","week_end":"2023-02-18"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.13","percent_visits_covid":"1.5","percent_visits_influenza":"0.57","percent_visits_rsv":"0.07","week_end":"2023-02-25"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.11","percent_visits_covid":"1.49","percent_visits_influenza":"0.54","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.17","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-03-11"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.58","percent_visits_covid":"1.18","percent_visits_influenza":"0.33","percent_visits_rsv":"0.07","week_end":"2023-03-18"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.62","percent_visits_covid":"1.14","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-03-25"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.8","percent_visits_covid":"1.29","percent_visits_influenza":"0.46","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.64","percent_visits_covid":"1.14","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-08"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.45","percent_visits_rsv":"0.07","week_end":"2023-04-15"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.48","percent_visits_covid":"0.98","percent_visits_influenza":"0.47","percent_visits_rsv":"0.04","week_end":"2023-04-22"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.59","percent_visits_covid":"0.88","percent_visits_influenza":"0.68","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.63","percent_visits_covid":"0.85","percent_visits_influenza":"0.75","percent_visits_rsv":"0.04","week_end":"2023-05-06"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.69","percent_visits_covid":"0.83","percent_visits_influenza":"0.83","percent_visits_rsv":"0.04","week_end":"2023-05-13"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.73","percent_visits_covid":"0.83","percent_visits_influenza":"0.86","percent_visits_rsv":"0.04","week_end":"2023-05-20"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.12","percent_visits_covid":"1.06","percent_visits_influenza":"1.01","percent_visits_rsv":"0.06","week_end":"2023-05-27"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.49","percent_visits_covid":"1.31","percent_visits_influenza":"1.16","percent_visits_rsv":"0.04","week_end":"2023-06-03"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.21","percent_visits_covid":"1.16","percent_visits_influenza":"0.97","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"1.94","percent_visits_covid":"1.18","percent_visits_influenza":"0.74","percent_visits_rsv":"0.04","week_end":"2023-06-17"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.05","percent_visits_covid":"1.29","percent_visits_influenza":"0.71","percent_visits_rsv":"0.07","week_end":"2023-06-24"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.09","percent_visits_covid":"1.37","percent_visits_influenza":"0.69","percent_visits_rsv":"0.04","week_end":"2023-07-01"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.36","percent_visits_covid":"1.62","percent_visits_influenza":"0.71","percent_visits_rsv":"0.04","week_end":"2023-07-08"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"2.54","percent_visits_covid":"1.89","percent_visits_influenza":"0.59","percent_visits_rsv":"0.06","week_end":"2023-07-15"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.0","percent_visits_covid":"2.35","percent_visits_influenza":"0.59","percent_visits_rsv":"0.07","week_end":"2023-07-22"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.49","percent_visits_covid":"2.93","percent_visits_influenza":"0.53","percent_visits_rsv":"0.08","week_end":"2023-07-29"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.98","percent_visits_covid":"3.43","percent_visits_influenza":"0.51","percent_visits_rsv":"0.06","week_end":"2023-08-05"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.23","percent_visits_covid":"3.75","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-08-12"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.86","percent_visits_covid":"4.25","percent_visits_influenza":"0.51","percent_visits_rsv":"0.13","week_end":"2023-08-19"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.72","percent_visits_covid":"4.94","percent_visits_influenza":"0.71","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.61","percent_visits_covid":"4.66","percent_visits_influenza":"0.82","percent_visits_rsv":"0.16","week_end":"2023-09-02"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.65","percent_visits_covid":"3.74","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-09"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.75","percent_visits_covid":"2.8","percent_visits_influenza":"0.77","percent_visits_rsv":"0.21","week_end":"2023-09-16"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.43","percent_visits_covid":"2.14","percent_visits_influenza":"1.0","percent_visits_rsv":"0.35","week_end":"2023-09-23"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.36","percent_visits_covid":"1.81","percent_visits_influenza":"1.17","percent_visits_rsv":"0.4","week_end":"2023-09-30"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.32","percent_visits_covid":"1.43","percent_visits_influenza":"1.38","percent_visits_rsv":"0.55","week_end":"2023-10-07"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.59","percent_visits_covid":"1.3","percent_visits_influenza":"1.66","percent_visits_rsv":"0.65","week_end":"2023-10-14"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"3.82","percent_visits_covid":"1.22","percent_visits_influenza":"1.8","percent_visits_rsv":"0.84","week_end":"2023-10-21"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.0","percent_visits_covid":"1.21","percent_visits_influenza":"2.01","percent_visits_rsv":"0.83","week_end":"2023-10-28"}
-,{"county":"Volusia","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"4.48","percent_visits_covid":"0.91","percent_visits_influenza":"2.75","percent_visits_rsv":"0.86","week_end":"2023-11-04"}
-,{"county":"Volusia","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.03","percent_visits_covid":"0.91","percent_visits_influenza":"3.21","percent_visits_rsv":"0.97","week_end":"2023-11-11"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"5.43","percent_visits_covid":"1.03","percent_visits_influenza":"3.59","percent_visits_rsv":"0.88","week_end":"2023-11-18"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.18","percent_visits_covid":"1.15","percent_visits_influenza":"4.28","percent_visits_rsv":"0.82","week_end":"2023-11-25"}
-,{"county":"Volusia","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Orange (Orlando), FL - Volusia, FL","hsa_counties":"Flagler, Lake, Orange, Seminole, Sumter, Volusia","percent_visits_combined":"6.22","percent_visits_covid":"1.28","percent_visits_influenza":"4.29","percent_visits_rsv":"0.71","week_end":"2023-12-02"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.01","percent_visits_covid":"0.54","percent_visits_influenza":"1.35","percent_visits_rsv":"0.12","week_end":"2022-10-01"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.02","percent_visits_covid":"0.37","percent_visits_influenza":"1.57","percent_visits_rsv":"0.08","week_end":"2022-10-08"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.16","percent_visits_covid":"0.4","percent_visits_influenza":"1.71","percent_visits_rsv":"0.1","week_end":"2022-10-15"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.36","percent_visits_influenza":"3.32","percent_visits_rsv":"0.18","week_end":"2022-10-22"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.16","percent_visits_covid":"0.45","percent_visits_influenza":"6.55","percent_visits_rsv":"0.25","week_end":"2022-10-29"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"7.71","percent_visits_covid":"0.38","percent_visits_influenza":"7.2","percent_visits_rsv":"0.27","week_end":"2022-11-05"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"0.47","percent_visits_influenza":"5.93","percent_visits_rsv":"0.11","week_end":"2022-11-12"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.14","percent_visits_covid":"0.51","percent_visits_influenza":"3.49","percent_visits_rsv":"0.2","week_end":"2022-11-19"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.18","percent_visits_covid":"0.79","percent_visits_influenza":"3.33","percent_visits_rsv":"0.15","week_end":"2022-11-26"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.95","percent_visits_covid":"0.73","percent_visits_influenza":"3.09","percent_visits_rsv":"0.16","week_end":"2022-12-03"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.75","percent_visits_covid":"1.36","percent_visits_influenza":"2.29","percent_visits_rsv":"0.23","week_end":"2022-12-10"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.15","percent_visits_covid":"1.56","percent_visits_influenza":"2.35","percent_visits_rsv":"0.38","week_end":"2022-12-17"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.24","percent_visits_covid":"2.08","percent_visits_influenza":"2.03","percent_visits_rsv":"0.33","week_end":"2022-12-24"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.71","percent_visits_influenza":"1.92","percent_visits_rsv":"0.12","week_end":"2022-12-31"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.76","percent_visits_covid":"2.86","percent_visits_influenza":"1.71","percent_visits_rsv":"0.23","week_end":"2023-01-07"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.12","percent_visits_covid":"3.63","percent_visits_influenza":"1.45","percent_visits_rsv":"0.18","week_end":"2023-01-14"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.57","percent_visits_covid":"2.85","percent_visits_influenza":"1.62","percent_visits_rsv":"0.23","week_end":"2023-01-21"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.63","percent_visits_covid":"3.24","percent_visits_influenza":"1.14","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.71","percent_visits_covid":"2.49","percent_visits_influenza":"1.1","percent_visits_rsv":"0.16","week_end":"2023-02-04"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.04","percent_visits_covid":"2.3","percent_visits_influenza":"1.48","percent_visits_rsv":"0.32","week_end":"2023-02-11"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.0","percent_visits_covid":"2.84","percent_visits_influenza":"1.01","percent_visits_rsv":"0.24","week_end":"2023-02-18"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.83","percent_visits_covid":"1.96","percent_visits_influenza":"0.78","percent_visits_rsv":"0.17","week_end":"2023-02-25"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.96","percent_visits_covid":"1.3","percent_visits_influenza":"0.66","percent_visits_rsv":"0.06","week_end":"2023-03-04"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.37","percent_visits_covid":"1.2","percent_visits_influenza":"0.9","percent_visits_rsv":"0.28","week_end":"2023-03-11"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.2","percent_visits_influenza":"0.71","percent_visits_rsv":"0.24","week_end":"2023-03-18"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.5","percent_visits_covid":"1.53","percent_visits_influenza":"0.87","percent_visits_rsv":"0.17","week_end":"2023-03-25"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.0","percent_visits_covid":"1.29","percent_visits_influenza":"0.69","percent_visits_rsv":"0.06","week_end":"2023-04-01"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"1.29","percent_visits_influenza":"0.56","percent_visits_rsv":"0.06","week_end":"2023-04-08"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.95","percent_visits_covid":"1.15","percent_visits_influenza":"0.8","percent_visits_rsv":"0.04","week_end":"2023-04-15"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.83","percent_visits_covid":"1.05","percent_visits_influenza":"0.65","percent_visits_rsv":"0.15","week_end":"2023-04-22"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.92","percent_visits_covid":"0.69","percent_visits_influenza":"1.23","percent_visits_rsv":"0.02","week_end":"2023-04-29"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.68","percent_visits_covid":"0.84","percent_visits_influenza":"0.82","percent_visits_rsv":"0.02","week_end":"2023-05-06"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.57","percent_visits_covid":"0.94","percent_visits_influenza":"0.56","percent_visits_rsv":"0.12","week_end":"2023-05-13"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.98","percent_visits_covid":"0.47","percent_visits_influenza":"0.45","percent_visits_rsv":"0.1","week_end":"2023-05-20"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"0.97","percent_visits_covid":"0.48","percent_visits_influenza":"0.38","percent_visits_rsv":"0.1","week_end":"2023-05-27"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.54","percent_visits_covid":"0.72","percent_visits_influenza":"0.74","percent_visits_rsv":"0.1","week_end":"2023-06-03"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.23","percent_visits_covid":"0.55","percent_visits_influenza":"0.67","percent_visits_rsv":"0.08","week_end":"2023-06-10"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.21","percent_visits_covid":"0.53","percent_visits_influenza":"0.6","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.45","percent_visits_covid":"0.54","percent_visits_influenza":"0.84","percent_visits_rsv":"0.12","week_end":"2023-06-24"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"1.87","percent_visits_covid":"0.85","percent_visits_influenza":"0.98","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.06","percent_visits_covid":"1.2","percent_visits_influenza":"0.83","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.1","percent_visits_covid":"1.09","percent_visits_influenza":"0.85","percent_visits_rsv":"0.16","week_end":"2023-07-15"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"2.8","percent_visits_covid":"1.87","percent_visits_influenza":"0.81","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.27","percent_visits_covid":"2.44","percent_visits_influenza":"0.87","percent_visits_rsv":"0.0","week_end":"2023-07-29"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.05","percent_visits_covid":"3.19","percent_visits_influenza":"0.77","percent_visits_rsv":"0.18","week_end":"2023-08-05"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.65","percent_visits_covid":"3.62","percent_visits_influenza":"0.9","percent_visits_rsv":"0.23","week_end":"2023-08-12"}
-,{"county":"Wakulla","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.81","percent_visits_covid":"3.71","percent_visits_influenza":"1.01","percent_visits_rsv":"0.17","week_end":"2023-08-19"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.48","percent_visits_covid":"5.1","percent_visits_influenza":"1.19","percent_visits_rsv":"0.35","week_end":"2023-08-26"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.8","percent_visits_covid":"4.3","percent_visits_influenza":"1.14","percent_visits_rsv":"0.45","week_end":"2023-09-02"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.08","percent_visits_covid":"3.34","percent_visits_influenza":"1.45","percent_visits_rsv":"0.37","week_end":"2023-09-09"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.03","percent_visits_covid":"2.73","percent_visits_influenza":"1.05","percent_visits_rsv":"0.36","week_end":"2023-09-16"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.94","percent_visits_covid":"1.88","percent_visits_influenza":"1.27","percent_visits_rsv":"0.84","week_end":"2023-09-23"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.46","percent_visits_covid":"1.72","percent_visits_influenza":"1.64","percent_visits_rsv":"1.19","week_end":"2023-09-30"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.44","percent_visits_covid":"0.98","percent_visits_influenza":"1.4","percent_visits_rsv":"1.09","week_end":"2023-10-07"}
-,{"county":"Wakulla","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"3.85","percent_visits_covid":"0.72","percent_visits_influenza":"2.13","percent_visits_rsv":"1.04","week_end":"2023-10-14"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.56","percent_visits_covid":"0.89","percent_visits_influenza":"2.47","percent_visits_rsv":"1.28","week_end":"2023-10-21"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"4.93","percent_visits_covid":"1.07","percent_visits_influenza":"2.62","percent_visits_rsv":"1.41","week_end":"2023-10-28"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.0","percent_visits_covid":"0.76","percent_visits_influenza":"2.75","percent_visits_rsv":"1.58","week_end":"2023-11-04"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.12","percent_visits_covid":"0.84","percent_visits_influenza":"3.96","percent_visits_rsv":"1.46","week_end":"2023-11-11"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"6.87","percent_visits_covid":"0.87","percent_visits_influenza":"4.92","percent_visits_rsv":"1.23","week_end":"2023-11-18"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.97","percent_visits_covid":"0.95","percent_visits_influenza":"4.34","percent_visits_rsv":"0.81","week_end":"2023-11-25"}
-,{"county":"Wakulla","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Leon (Tallahassee), FL - Gadsden, FL","hsa_counties":"Franklin, Gadsden, Jefferson, Leon, Liberty, Madison, Taylor, Wakulla","percent_visits_combined":"5.93","percent_visits_covid":"0.66","percent_visits_influenza":"4.54","percent_visits_rsv":"0.88","week_end":"2023-12-02"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.56","percent_visits_covid":"1.04","percent_visits_influenza":"0.96","percent_visits_rsv":"0.58","week_end":"2022-10-01"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.81","percent_visits_covid":"0.84","percent_visits_influenza":"2.37","percent_visits_rsv":"0.63","week_end":"2022-10-08"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.41","percent_visits_covid":"0.52","percent_visits_influenza":"3.38","percent_visits_rsv":"0.53","week_end":"2022-10-15"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.61","percent_visits_covid":"0.66","percent_visits_influenza":"5.64","percent_visits_rsv":"0.38","week_end":"2022-10-22"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"10.89","percent_visits_covid":"0.78","percent_visits_influenza":"9.83","percent_visits_rsv":"0.34","week_end":"2022-10-29"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"12.08","percent_visits_covid":"0.8","percent_visits_influenza":"11.1","percent_visits_rsv":"0.22","week_end":"2022-11-05"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"9.37","percent_visits_covid":"0.6","percent_visits_influenza":"8.48","percent_visits_rsv":"0.33","week_end":"2022-11-12"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.8","percent_visits_covid":"1.02","percent_visits_influenza":"5.71","percent_visits_rsv":"0.14","week_end":"2022-11-19"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.62","percent_visits_covid":"1.27","percent_visits_influenza":"5.03","percent_visits_rsv":"0.36","week_end":"2022-11-26"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"5.65","percent_visits_covid":"1.71","percent_visits_influenza":"3.87","percent_visits_rsv":"0.22","week_end":"2022-12-03"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.71","percent_visits_covid":"1.37","percent_visits_influenza":"2.22","percent_visits_rsv":"0.17","week_end":"2022-12-10"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.93","percent_visits_covid":"1.79","percent_visits_influenza":"1.96","percent_visits_rsv":"0.23","week_end":"2022-12-17"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.7","percent_visits_covid":"2.5","percent_visits_influenza":"2.09","percent_visits_rsv":"0.16","week_end":"2022-12-24"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"6.12","percent_visits_covid":"3.87","percent_visits_influenza":"2.16","percent_visits_rsv":"0.16","week_end":"2022-12-31"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.84","percent_visits_covid":"3.35","percent_visits_influenza":"1.47","percent_visits_rsv":"0.1","week_end":"2023-01-07"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.19","percent_visits_covid":"2.33","percent_visits_influenza":"0.82","percent_visits_rsv":"0.1","week_end":"2023-01-14"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.68","percent_visits_covid":"2.15","percent_visits_influenza":"0.53","percent_visits_rsv":"0.04","week_end":"2023-01-21"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.48","percent_visits_covid":"1.82","percent_visits_influenza":"0.68","percent_visits_rsv":"0.05","week_end":"2023-01-28"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.5","percent_visits_covid":"1.96","percent_visits_influenza":"0.54","percent_visits_rsv":"0.03","week_end":"2023-02-04"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.31","percent_visits_covid":"1.78","percent_visits_influenza":"0.53","percent_visits_rsv":"0.05","week_end":"2023-02-11"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.21","percent_visits_covid":"1.59","percent_visits_influenza":"0.6","percent_visits_rsv":"0.09","week_end":"2023-02-18"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.85","percent_visits_covid":"1.46","percent_visits_influenza":"0.45","percent_visits_rsv":"0.02","week_end":"2023-02-25"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.48","percent_visits_covid":"1.1","percent_visits_influenza":"0.33","percent_visits_rsv":"0.05","week_end":"2023-03-04"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.25","percent_visits_covid":"0.92","percent_visits_influenza":"0.24","percent_visits_rsv":"0.1","week_end":"2023-03-11"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.12","percent_visits_covid":"0.88","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-03-18"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.05","percent_visits_covid":"0.85","percent_visits_influenza":"0.17","percent_visits_rsv":"0.03","week_end":"2023-03-25"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.23","percent_visits_covid":"1.05","percent_visits_influenza":"0.18","percent_visits_rsv":"0.03","week_end":"2023-04-01"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.37","percent_visits_covid":"0.96","percent_visits_influenza":"0.33","percent_visits_rsv":"0.08","week_end":"2023-04-08"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.96","percent_visits_covid":"0.72","percent_visits_influenza":"0.25","percent_visits_rsv":"0.01","week_end":"2023-04-15"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.94","percent_visits_covid":"0.71","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-04-22"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.78","percent_visits_influenza":"0.38","percent_visits_rsv":"0.06","week_end":"2023-04-29"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.17","percent_visits_covid":"0.65","percent_visits_influenza":"0.49","percent_visits_rsv":"0.05","week_end":"2023-05-06"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.11","percent_visits_covid":"0.64","percent_visits_influenza":"0.44","percent_visits_rsv":"0.06","week_end":"2023-05-13"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.09","percent_visits_covid":"0.67","percent_visits_influenza":"0.36","percent_visits_rsv":"0.06","week_end":"2023-05-20"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.01","percent_visits_covid":"0.63","percent_visits_influenza":"0.37","percent_visits_rsv":"0.03","week_end":"2023-05-27"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.64","percent_visits_influenza":"0.48","percent_visits_rsv":"0.09","week_end":"2023-06-03"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.21","percent_visits_covid":"0.76","percent_visits_influenza":"0.41","percent_visits_rsv":"0.04","week_end":"2023-06-10"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.96","percent_visits_covid":"0.52","percent_visits_influenza":"0.39","percent_visits_rsv":"0.08","week_end":"2023-06-17"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.78","percent_visits_covid":"0.54","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-06-24"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.77","percent_visits_covid":"0.61","percent_visits_influenza":"0.12","percent_visits_rsv":"0.06","week_end":"2023-07-01"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"0.92","percent_visits_covid":"0.68","percent_visits_influenza":"0.2","percent_visits_rsv":"0.08","week_end":"2023-07-08"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.39","percent_visits_covid":"1.14","percent_visits_influenza":"0.22","percent_visits_rsv":"0.03","week_end":"2023-07-15"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.73","percent_visits_covid":"1.45","percent_visits_influenza":"0.25","percent_visits_rsv":"0.03","week_end":"2023-07-22"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"1.81","percent_visits_covid":"1.53","percent_visits_influenza":"0.28","percent_visits_rsv":"0.04","week_end":"2023-07-29"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.36","percent_visits_covid":"2.13","percent_visits_influenza":"0.21","percent_visits_rsv":"0.04","week_end":"2023-08-05"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.02","percent_visits_covid":"2.56","percent_visits_influenza":"0.46","percent_visits_rsv":"0.07","week_end":"2023-08-12"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.25","percent_visits_covid":"2.69","percent_visits_influenza":"0.51","percent_visits_rsv":"0.09","week_end":"2023-08-19"}
-,{"county":"Walton","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.52","percent_visits_covid":"3.99","percent_visits_influenza":"0.5","percent_visits_rsv":"0.11","week_end":"2023-08-26"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.73","percent_visits_covid":"4.23","percent_visits_influenza":"0.53","percent_visits_rsv":"0.03","week_end":"2023-09-02"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.81","percent_visits_covid":"3.33","percent_visits_influenza":"0.49","percent_visits_rsv":"0.07","week_end":"2023-09-09"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.21","percent_visits_covid":"2.53","percent_visits_influenza":"0.54","percent_visits_rsv":"0.17","week_end":"2023-09-16"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.71","percent_visits_covid":"2.06","percent_visits_influenza":"0.5","percent_visits_rsv":"0.18","week_end":"2023-09-23"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.61","percent_visits_covid":"1.76","percent_visits_influenza":"0.71","percent_visits_rsv":"0.23","week_end":"2023-09-30"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.13","percent_visits_covid":"1.22","percent_visits_influenza":"0.66","percent_visits_rsv":"0.29","week_end":"2023-10-07"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.4","percent_visits_covid":"1.29","percent_visits_influenza":"0.7","percent_visits_rsv":"0.46","week_end":"2023-10-14"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.46","percent_visits_covid":"0.83","percent_visits_influenza":"0.89","percent_visits_rsv":"0.86","week_end":"2023-10-21"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"2.97","percent_visits_covid":"1.1","percent_visits_influenza":"1.0","percent_visits_rsv":"0.92","week_end":"2023-10-28"}
-,{"county":"Walton","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.09","percent_visits_covid":"0.77","percent_visits_influenza":"1.35","percent_visits_rsv":"1.04","week_end":"2023-11-04"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.25","percent_visits_covid":"1.07","percent_visits_influenza":"2.08","percent_visits_rsv":"1.2","week_end":"2023-11-11"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"3.74","percent_visits_covid":"0.62","percent_visits_influenza":"2.38","percent_visits_rsv":"0.82","week_end":"2023-11-18"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.08","percent_visits_covid":"0.64","percent_visits_influenza":"2.48","percent_visits_rsv":"1.08","week_end":"2023-11-25"}
-,{"county":"Walton","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Escambia (Pensacola), FL - Okaloosa, FL","hsa_counties":"Escambia, Okaloosa, Santa Rosa, Walton","percent_visits_combined":"4.65","percent_visits_covid":"1.0","percent_visits_influenza":"2.92","percent_visits_rsv":"0.81","week_end":"2023-12-02"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.22","percent_visits_covid":"0.96","percent_visits_influenza":"2.98","percent_visits_rsv":"0.31","week_end":"2022-10-01"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.17","percent_visits_covid":"0.89","percent_visits_influenza":"4.1","percent_visits_rsv":"0.18","week_end":"2022-10-08"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.74","percent_visits_covid":"0.7","percent_visits_influenza":"3.73","percent_visits_rsv":"0.31","week_end":"2022-10-15"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.39","percent_visits_covid":"0.96","percent_visits_influenza":"5.24","percent_visits_rsv":"0.24","week_end":"2022-10-22"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.68","percent_visits_covid":"0.78","percent_visits_influenza":"5.56","percent_visits_rsv":"0.39","week_end":"2022-10-29"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.13","percent_visits_covid":"0.88","percent_visits_influenza":"6.85","percent_visits_rsv":"0.43","week_end":"2022-11-05"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.74","percent_visits_covid":"0.76","percent_visits_influenza":"6.65","percent_visits_rsv":"0.36","week_end":"2022-11-12"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.07","percent_visits_covid":"0.56","percent_visits_influenza":"5.1","percent_visits_rsv":"0.44","week_end":"2022-11-19"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.62","percent_visits_covid":"0.72","percent_visits_influenza":"6.26","percent_visits_rsv":"0.77","week_end":"2022-11-26"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.54","percent_visits_covid":"0.74","percent_visits_influenza":"5.27","percent_visits_rsv":"0.55","week_end":"2022-12-03"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.5","percent_visits_covid":"1.36","percent_visits_influenza":"3.77","percent_visits_rsv":"0.42","week_end":"2022-12-10"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.25","percent_visits_covid":"1.63","percent_visits_influenza":"3.05","percent_visits_rsv":"0.59","week_end":"2022-12-17"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.25","percent_visits_covid":"2.17","percent_visits_influenza":"3.61","percent_visits_rsv":"0.56","week_end":"2022-12-24"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.73","percent_visits_covid":"3.86","percent_visits_influenza":"3.52","percent_visits_rsv":"0.42","week_end":"2022-12-31"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.17","percent_visits_covid":"3.23","percent_visits_influenza":"2.73","percent_visits_rsv":"0.4","week_end":"2023-01-07"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.01","percent_visits_covid":"2.54","percent_visits_influenza":"2.04","percent_visits_rsv":"0.42","week_end":"2023-01-14"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.87","percent_visits_covid":"2.43","percent_visits_influenza":"2.14","percent_visits_rsv":"0.35","week_end":"2023-01-21"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.73","percent_visits_covid":"1.76","percent_visits_influenza":"1.7","percent_visits_rsv":"0.29","week_end":"2023-01-28"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"2.51","percent_visits_influenza":"1.56","percent_visits_rsv":"0.13","week_end":"2023-02-04"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.14","percent_visits_covid":"2.23","percent_visits_influenza":"1.64","percent_visits_rsv":"0.31","week_end":"2023-02-11"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.69","percent_visits_covid":"1.66","percent_visits_influenza":"0.92","percent_visits_rsv":"0.18","week_end":"2023-02-18"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.76","percent_visits_covid":"1.69","percent_visits_influenza":"0.91","percent_visits_rsv":"0.2","week_end":"2023-02-25"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.16","percent_visits_covid":"1.28","percent_visits_influenza":"0.77","percent_visits_rsv":"0.1","week_end":"2023-03-04"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.73","percent_visits_covid":"0.93","percent_visits_influenza":"0.6","percent_visits_rsv":"0.23","week_end":"2023-03-11"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.54","percent_visits_covid":"0.92","percent_visits_influenza":"0.59","percent_visits_rsv":"0.05","week_end":"2023-03-18"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.99","percent_visits_covid":"1.4","percent_visits_influenza":"0.52","percent_visits_rsv":"0.13","week_end":"2023-03-25"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.6","percent_visits_covid":"1.11","percent_visits_influenza":"0.42","percent_visits_rsv":"0.1","week_end":"2023-04-01"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.37","percent_visits_covid":"0.92","percent_visits_influenza":"0.4","percent_visits_rsv":"0.07","week_end":"2023-04-08"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.69","percent_visits_covid":"1.18","percent_visits_influenza":"0.43","percent_visits_rsv":"0.08","week_end":"2023-04-15"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Decreasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.06","percent_visits_covid":"0.82","percent_visits_influenza":"0.19","percent_visits_rsv":"0.07","week_end":"2023-04-22"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.98","percent_visits_covid":"0.67","percent_visits_influenza":"0.31","percent_visits_rsv":"0.03","week_end":"2023-04-29"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.93","percent_visits_covid":"0.49","percent_visits_influenza":"0.34","percent_visits_rsv":"0.15","week_end":"2023-05-06"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.78","percent_visits_covid":"0.44","percent_visits_influenza":"0.29","percent_visits_rsv":"0.07","week_end":"2023-05-13"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.52","percent_visits_covid":"0.35","percent_visits_influenza":"0.17","percent_visits_rsv":"0.0","week_end":"2023-05-20"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.08","percent_visits_covid":"0.59","percent_visits_influenza":"0.44","percent_visits_rsv":"0.05","week_end":"2023-05-27"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.09","percent_visits_covid":"0.43","percent_visits_influenza":"0.63","percent_visits_rsv":"0.05","week_end":"2023-06-03"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.07","percent_visits_covid":"0.5","percent_visits_influenza":"0.47","percent_visits_rsv":"0.1","week_end":"2023-06-10"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.86","percent_visits_covid":"0.39","percent_visits_influenza":"0.47","percent_visits_rsv":"0.0","week_end":"2023-06-17"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.67","percent_visits_covid":"0.35","percent_visits_influenza":"0.3","percent_visits_rsv":"0.02","week_end":"2023-06-24"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Decreasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.96","percent_visits_covid":"0.75","percent_visits_influenza":"0.14","percent_visits_rsv":"0.07","week_end":"2023-07-01"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"0.6","percent_visits_covid":"0.41","percent_visits_influenza":"0.12","percent_visits_rsv":"0.07","week_end":"2023-07-08"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.12","percent_visits_covid":"0.9","percent_visits_influenza":"0.22","percent_visits_rsv":"0.02","week_end":"2023-07-15"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.65","percent_visits_covid":"1.12","percent_visits_influenza":"0.44","percent_visits_rsv":"0.12","week_end":"2023-07-22"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"1.55","percent_visits_covid":"1.25","percent_visits_influenza":"0.22","percent_visits_rsv":"0.1","week_end":"2023-07-29"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"2.37","percent_visits_covid":"1.83","percent_visits_influenza":"0.39","percent_visits_rsv":"0.24","week_end":"2023-08-05"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.12","percent_visits_covid":"2.42","percent_visits_influenza":"0.45","percent_visits_rsv":"0.28","week_end":"2023-08-12"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.17","percent_visits_covid":"3.5","percent_visits_influenza":"0.39","percent_visits_rsv":"0.35","week_end":"2023-08-19"}
-,{"county":"Washington","ed_trends_covid":"Increasing","ed_trends_influenza":"No Change","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.48","percent_visits_covid":"4.88","percent_visits_influenza":"0.43","percent_visits_rsv":"0.24","week_end":"2023-08-26"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"5.52","percent_visits_covid":"4.84","percent_visits_influenza":"0.26","percent_visits_rsv":"0.42","week_end":"2023-09-02"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.46","percent_visits_covid":"3.78","percent_visits_influenza":"0.45","percent_visits_rsv":"0.25","week_end":"2023-09-09"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.31","percent_visits_covid":"2.37","percent_visits_influenza":"0.73","percent_visits_rsv":"0.25","week_end":"2023-09-16"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"3.57","percent_visits_covid":"1.87","percent_visits_influenza":"1.2","percent_visits_rsv":"0.51","week_end":"2023-09-23"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"4.95","percent_visits_covid":"2.04","percent_visits_influenza":"2.25","percent_visits_rsv":"0.68","week_end":"2023-09-30"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"6.33","percent_visits_covid":"1.37","percent_visits_influenza":"4.44","percent_visits_rsv":"0.69","week_end":"2023-10-07"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.91","percent_visits_covid":"1.65","percent_visits_influenza":"5.67","percent_visits_rsv":"0.69","week_end":"2023-10-14"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"Increasing","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.18","percent_visits_covid":"1.17","percent_visits_influenza":"6.4","percent_visits_rsv":"0.79","week_end":"2023-10-21"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"8.58","percent_visits_covid":"0.8","percent_visits_influenza":"7.2","percent_visits_rsv":"0.69","week_end":"2023-10-28"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"Increasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.51","percent_visits_covid":"0.97","percent_visits_influenza":"7.98","percent_visits_rsv":"0.66","week_end":"2023-11-04"}
-,{"county":"Washington","ed_trends_covid":"Decreasing","ed_trends_influenza":"No Change","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"12.22","percent_visits_covid":"0.91","percent_visits_influenza":"10.69","percent_visits_rsv":"0.8","week_end":"2023-11-11"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"10.13","percent_visits_covid":"0.53","percent_visits_influenza":"8.83","percent_visits_rsv":"0.84","week_end":"2023-11-18"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"9.81","percent_visits_covid":"0.77","percent_visits_influenza":"8.41","percent_visits_rsv":"0.87","week_end":"2023-11-25"}
-,{"county":"Washington","ed_trends_covid":"No Change","ed_trends_influenza":"Decreasing","ed_trends_rsv":"No Change","geography":"Florida","hsa":"Bay (Panama City), FL - Jackson, FL","hsa_counties":"Bay, Calhoun, Gulf, Holmes, Jackson, Washington","percent_visits_combined":"7.5","percent_visits_covid":"0.75","percent_visits_influenza":"6.27","percent_visits_rsv":"0.56","week_end":"2023-12-02"}
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/filters/States.json b/packages/dashboard/examples/filters/States.json
deleted file mode 100644
index 42ef047a7d..0000000000
--- a/packages/dashboard/examples/filters/States.json
+++ /dev/null
@@ -1,146 +0,0 @@
-[
- {
- "geography": "Alabama"
- },
- {
- "geography": "Alaska"
- },
- {
- "geography": "Arizona"
- },
- {
- "geography": "Arkansas"
- },
- {
- "geography": "California"
- },
- {
- "geography": "Colorado"
- },
- {
- "geography": "Connecticut"
- },
- {
- "geography": "Delaware"
- },
- {
- "geography": "District of Columbia"
- },
- {
- "geography": "Florida"
- },
- {
- "geography": "Georgia"
- },
- {
- "geography": "Hawaii"
- },
- {
- "geography": "Idaho"
- },
- {
- "geography": "Illinois"
- },
- {
- "geography": "Indiana"
- },
- {
- "geography": "Iowa"
- },
- {
- "geography": "Kansas"
- },
- {
- "geography": "Kentucky"
- },
- {
- "geography": "Louisiana"
- },
- {
- "geography": "Maine"
- },
- {
- "geography": "Maryland"
- },
- {
- "geography": "Massachusetts"
- },
- {
- "geography": "Michigan"
- },
- {
- "geography": "Minnesota"
- },
- {
- "geography": "Mississippi"
- },
- {
- "geography": "Montana"
- },
- {
- "geography": "Nebraska"
- },
- {
- "geography": "Nevada"
- },
- {
- "geography": "New Jersey"
- },
- {
- "geography": "New Mexico"
- },
- {
- "geography": "New York"
- },
- {
- "geography": "North Carolina"
- },
- {
- "geography": "North Dakota"
- },
- {
- "geography": "Ohio"
- },
- {
- "geography": "Oklahoma"
- },
- {
- "geography": "Oregon"
- },
- {
- "geography": "Pennsylvania"
- },
- {
- "geography": "Rhode Island"
- },
- {
- "geography": "South Carolina"
- },
- {
- "geography": "Tennessee"
- },
- {
- "geography": "Texas"
- },
- {
- "geography": "United States"
- },
- {
- "geography": "Utah"
- },
- {
- "geography": "Vermont"
- },
- {
- "geography": "Virginia"
- },
- {
- "geography": "West Virginia"
- },
- {
- "geography": "Wisconsin"
- },
- {
- "geography": "Wyoming"
- }
-]
\ No newline at end of file
diff --git a/packages/dashboard/examples/legend-issue.json b/packages/dashboard/examples/legend-issue.json
index 1525331d96..abc9e374a2 100644
--- a/packages/dashboard/examples/legend-issue.json
+++ b/packages/dashboard/examples/legend-issue.json
@@ -16,7 +16,7 @@
"dataFileSourceType": "url",
"dataFileFormat": "JSON",
"preview": true,
- "dataUrl": "/examples/legend-issue-data.json"
+ "dataUrl": "/examples/__data__/legend-issue-data.json"
}
},
"visualizationType": null,
diff --git a/packages/dashboard/examples/sankey.json b/packages/dashboard/examples/sankey.json
index 2b23de26be..e395648d0a 100644
--- a/packages/dashboard/examples/sankey.json
+++ b/packages/dashboard/examples/sankey.json
@@ -4238,7 +4238,7 @@
}
],
"dataFileSize": 72,
- "dataFileName": "data.json",
+ "dataFileName": "__data__/data.json",
"dataFileSourceType": "file",
"dataFileFormat": "JSON",
"preview": false
@@ -4251,7 +4251,7 @@
}
],
"dataFileSize": 59,
- "dataFileName": "data-2.json",
+ "dataFileName": "__data__/data-2.json",
"dataFileSourceType": "file",
"dataFileFormat": "JSON",
"preview": false
@@ -5215,4 +5215,4 @@
"type": "dashboard",
"uuid": 1707343065225,
"runtime": {}
-}
\ No newline at end of file
+}
diff --git a/packages/dashboard/examples/state-level.json b/packages/dashboard/examples/state-level.json
deleted file mode 100644
index 0a48b79232..0000000000
--- a/packages/dashboard/examples/state-level.json
+++ /dev/null
@@ -1,90136 +0,0 @@
-[
- {
- "State": "Alabama",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "1.3838226942644372",
- "national_value": "1.6826083301683215",
- "region_value": "2.845086277129335",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "6.826868663812423",
- "national_value": "2.124626705610647",
- "region_value": "5.299499119809991",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "8.000398470004754",
- "national_value": "2.6837021559305736",
- "region_value": "5.886541834333909",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alabama",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "7.670837339030591",
- "national_value": "1.6847888502204156",
- "region_value": "5.253371358392005",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "7.140051075620611",
- "national_value": "1.7342704780502864",
- "region_value": "3.943501391247169",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "5.2667881811846895",
- "national_value": "2.5176843149970507",
- "region_value": "4.342884914848835",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "6.474254417534734",
- "national_value": "3.3062068257654307",
- "region_value": "3.494108303925306",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "6.730005538573331",
- "national_value": "3.0259000068656716",
- "region_value": "6.177373547483146",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "5.672171739228518",
- "national_value": "3.5656963666126624",
- "region_value": "4.9652604206011715",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "6.488116718870507",
- "national_value": "5.571054487750484",
- "region_value": "4.512398753521249",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "6.80705160599948",
- "national_value": "5.815815969221436",
- "region_value": "6.483962575074571",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "6.176594481426977",
- "national_value": "7.972715209443255",
- "region_value": "6.786697541831071",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "6.31711675537895",
- "national_value": "8.36714533097982",
- "region_value": "7.870550389438764",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "6.471146848890027",
- "national_value": "10.662626695924502",
- "region_value": "7.293131701028378",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "8.453843241798953",
- "national_value": "11.980909201182696",
- "region_value": "8.453843241798953",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alabama",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "6.561527360391845",
- "national_value": "10.608123300225985",
- "region_value": "10.353181175763877",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "6.648286626555499",
- "national_value": "13.542811094208",
- "region_value": "7.937538761584929",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "7.393545855682391",
- "national_value": "12.719191415297415",
- "region_value": "11.319823345006384",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "7.352940170589834",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "4.381332053668355",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "7.239467979997774",
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "7.892252999578989",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "6.484698344893256",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "5.14786570444328",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "2.5689283846737365",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "2.713688614348751",
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "3.0681432009343874",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "2.874804072419671",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "2.7418953394727357",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.407986317974644",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "1.5545254203548986",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.3040150145573914",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.7338905495295518",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.512588421023676",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.5805551993522204",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.2965115427997398",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.3766172301714876",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.2474184770663992",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.163606029527207",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.3781495437693732",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.2710427838212899",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.3541853706031242",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.2428562649799615",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.451159332649089",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.1604489138623988",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.423327861289982",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.2488859355914272",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.2404174849995742",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.2340043344703515",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.3899087275725606",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.4429771099015996",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.5013604733065058",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.789849321662809",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "2.69494760399657",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.8810783090991958",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.387209386106638",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.387209386106638",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.0530305316568813",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.0530305316568813",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.9879092113673416",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.9879092113673416",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.052708253090325",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.052708253090325",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "4.6854825044441375",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "4.6854825044441375",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "3.7165670183239112",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "3.7165670183239112",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "6.989782912249615",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "6.989782912249615",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "6.760876116248959",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "6.760876116248959",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "6.945579155670035",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "6.945579155670035",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "10.172559146444582",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alabama",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "10.172559146444582",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alabama",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "12.108292325918933",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "12.108292325918933",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "12.647531570367908",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "12.647531570367908",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "16.31398680928375",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "16.31398680928375",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "15.781481887631642",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "15.781481887631642",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "15.8078853465767",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "15.8078853465767",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "14.909727853183629",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "14.909727853183629",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "20.086654037160272",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "20.086654037160272",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "16.062715525502774",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "16.062715525502774",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "12.078048897601219",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "12.078048897601219",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alabama",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "7.4254108644588435",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "7.4254108644588435",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "8.012611324310141",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alabama",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "8.012611324310141",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alabama",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "5.083351334469727",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "5.083351334469727",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "7.550097024882595",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "7.550097024882595",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "2.930111044417885",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "2.930111044417885",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "2.681236423332585",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "2.681236423332585",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "3.307317028325649",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "3.307317028325649",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "4.575678965220362",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "4.575678965220362",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alabama",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "3.570093946744903",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "3.570093946744903",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "3.570093946744903",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.8303984941074347",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.8303984941074347",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.8303984941074347",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.3495637111708088",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.3495637111708088",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.3495637111708088",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.8311728437819312",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.8311728437819312",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.8311728437819312",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.4643192072193463",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.4643192072193463",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.4643192072193463",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.835410765698708",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.835410765698708",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.835410765698708",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.9697920426348665",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.9697920426348665",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.9697920426348665",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.5268906669152873",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.5268906669152873",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.5268906669152873",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.3944675887153941",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.3944675887153941",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.3944675887153941",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.3845824383901248",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.3845824383901248",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.3845824383901248",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.6798750922852024",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.6798750922852024",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.6798750922852024",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.289771338178382",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.289771338178382",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.289771338178382",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.3936770499206617",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.3936770499206617",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.3936770499206617",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.1984973199447062",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.1984973199447062",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.1984973199447062",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.5031356956808448",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.5031356956808448",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.5031356956808448",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.462855296616769",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.462855296616769",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.462855296616769",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2508644429968745",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2508644429968745",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2508644429968745",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.4558233121043334",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.4558233121043334",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.4558233121043334",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.2978636269897876",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.2978636269897876",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.2978636269897876",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.6472328023797302",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.6472328023797302",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.6472328023797302",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.6472328023797302",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.3936149611918254",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.3936149611918254",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.3936149611918254",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.3936149611918254",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.3681150983940933",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.3681150983940933",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.3681150983940933",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.3681150983940933",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.43687780534354",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.43687780534354",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.43687780534354",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.43687780534354",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.9335493437240572",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.9335493437240572",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.9335493437240572",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.9335493437240572",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.727476265504108",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.727476265504108",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.727476265504108",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.727476265504108",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.2411055133913784",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.2411055133913784",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.2411055133913784",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alabama",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.2411055133913784",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Alabama has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.7790593191008366",
- "national_value": "1.3757159403094235",
- "region_value": "1.3727060659615529",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "3.050784240621534",
- "national_value": "1.2604448744176628",
- "region_value": "1.2839751640924821",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "2.500629648585121",
- "national_value": "1.4989526753060833",
- "region_value": "1.3607571884416894",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.5327219409409552",
- "national_value": "1.3481042238716148",
- "region_value": "1.3886102626022836",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "0.9916761043267321",
- "national_value": "1.3376078752006206",
- "region_value": "1.382178938433719",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.088417724043506",
- "national_value": "1.3572731286449182",
- "region_value": "1.3572731286449182",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "2.1539013092952697",
- "national_value": "1.360705677152615",
- "region_value": "1.4047044137440596",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.7679626272199365",
- "national_value": "1.474803324474663",
- "region_value": "1.459326533369778",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "3.232558019904472",
- "national_value": "1.4944211195175625",
- "region_value": "1.492965579589258",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "0.8613055091319869",
- "national_value": "1.3748941802394352",
- "region_value": "1.4157322768529863",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.8325610667204166",
- "national_value": "1.3783354215594579",
- "region_value": "1.4916703045497908",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.8133881759884556",
- "national_value": "1.4558057901844157",
- "region_value": "1.4386947303080395",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "2.344467340670167",
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.5170732396570832",
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "2.0445887918767665",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "2.0445887918767665",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.059223851357092",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.059223851357092",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.5899329153329607",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.5899329153329607",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.4077307542920947",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.4077307542920947",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.6907080106124748",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.6907080106124748",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.9644307432991628",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.9644307432991628",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "2.218095374243614",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "2.218095374243614",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "6.514327248375409",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "6.514327248375409",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.5204079066444773",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.5204079066444773",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "6.843540014180225",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "6.843540014180225",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "7.705788056932776",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "7.705788056932776",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "10.643126155215862",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alaska",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "10.643126155215862",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alaska",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "10.477720036832523",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alaska",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "10.477720036832523",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alaska",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "13.687190995645318",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "13.687190995645318",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "18.23160689668462",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "18.23160689668462",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "11.47894751212052",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alaska",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "11.47894751212052",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alaska",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "12.413407055681166",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "12.413407055681166",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "15.677677677156929",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "15.677677677156929",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "20.679346296975535",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Alaska",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "20.679346296975535",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Alaska",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "17.976147175110327",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "17.976147175110327",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "15.293844575735786",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "15.293844575735786",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Alaska",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "7.816647454869312",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "7.816647454869312",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "5.648165331232376",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "5.648165331232376",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "5.2011002230563825",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "5.2011002230563825",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "7.119292658559662",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "7.119292658559662",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "8.525039441533774",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alaska",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "8.525039441533774",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Alaska",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "5.695232210826049",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "5.695232210826049",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "5.082100379421438",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "5.082100379421438",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "5.082100379421438",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Alaska",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.3076935555479567",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.3076935555479567",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.3076935555479567",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.351501328712849",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.351501328712849",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.351501328712849",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.8533810573228058",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.8533810573228058",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.8533810573228058",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.9568735677867952",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.9568735677867952",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.9568735677867952",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.3968561870157281",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.3968561870157281",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.3968561870157281",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.7213187547656714",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.7213187547656714",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.7213187547656714",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.3080267455359231",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.3080267455359231",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.3080267455359231",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.066075946108944",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.066075946108944",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.066075946108944",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.1760601763988632",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.1760601763988632",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.1760601763988632",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Alaska",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.1760601763988632",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Alaska has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.5891157893461396",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.5891157893461396",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.2148106901452853",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.2148106901452853",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.5181818788820622",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.5181818788820622",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.3136053580057647",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.3136053580057647",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "1.103073378954576",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "1.103073378954576",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "1.2952565077284317",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "1.2952565077284317",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "1.2581295845221834",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "1.2581295845221834",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "2.120650892876202",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "2.120650892876202",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "2.51490361479957",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "2.51490361479957",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": null,
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": null,
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "3.040173590665381",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "3.040173590665381",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": null,
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": null,
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "8.319243729176385",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arizona",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "8.319243729176385",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arizona",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "9.203635295184164",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arizona",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "9.203635295184164",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arizona",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "22.229277676770806",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "No Data",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Arizona",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "22.229277676770806",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "No Data",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Arizona",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "13.27719534160239",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Arizona",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "13.27719534160239",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Arizona",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "4.0018032904613525",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "4.0018032904613525",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "26.189304276856944",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "No Data",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Arizona",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "26.189304276856944",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "No Data",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Arizona",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "49.7207889262277",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "No Data",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Arizona",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "49.7207889262277",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "No Data",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Arizona",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "10.428764833416714",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arizona",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "10.428764833416714",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arizona",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.1954932127042701",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.1954932127042701",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "5.6475560729422805",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "5.6475560729422805",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "5.6475560729422805",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "4.962448635328915",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "4.962448635328915",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "4.962448635328915",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "6.347990958461146",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "6.347990958461146",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "6.347990958461146",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arizona",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.4545950664984377",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.4545950664984377",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.4545950664984377",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.2725015353737519",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.2725015353737519",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.2725015353737519",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.3412650308937835",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.3412650308937835",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.3412650308937835",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.4684088872495162",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.4684088872495162",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.4684088872495162",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.2508014813539676",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.2508014813539676",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.2508014813539676",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.1890773575387543",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.1890773575387543",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.1890773575387543",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.1440017624419334",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.1440017624419334",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.1440017624419334",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.1107961996019067",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.1107961996019067",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.1107961996019067",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0805191637860354",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0805191637860354",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0805191637860354",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "0.9931178039533006",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "0.9931178039533006",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "0.9931178039533006",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "0.9485176234140562",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "0.9485176234140562",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "0.9485176234140562",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.2517197827375592",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.2517197827375592",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.2517197827375592",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.053836950908549",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.053836950908549",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.053836950908549",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.1533213064204242",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.1533213064204242",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.1533213064204242",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.2014339892214825",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.2014339892214825",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.2014339892214825",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.3067709838831993",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.3067709838831993",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.3067709838831993",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.120792998219903",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.120792998219903",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.120792998219903",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.120792998219903",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.862677469678756",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.862677469678756",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.862677469678756",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.862677469678756",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.3066181649998159",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.3066181649998159",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.3066181649998159",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.3066181649998159",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "2.4226977802630274",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "2.4226977802630274",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "2.4226977802630274",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "2.4226977802630274",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.1515823202576043",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.1515823202576043",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.1515823202576043",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.1515823202576043",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arizona",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arizona",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Arkansas",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.1439578967947028",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.132203334075693",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.4450540855167002",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.6974232175691775",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.6112053296401403",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.0429910937521762",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.6489318433446485",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "2.102186894507757",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.1626330140846777",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.7121783363280854",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.2126298961394655",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.4458306997891226",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.063509332974797",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.2678530221619069",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.3931091671210325",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.4790111416974296",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "3.721862525567334",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.3305526054575392",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.2097808587960486",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.2097808587960486",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.2701275341538014",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.2701275341538014",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.1173174284530416",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.1173174284530416",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.3483428494775815",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.3483428494775815",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "3.546828084660436",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "3.546828084660436",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "2.2225269029149564",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "2.2225269029149564",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "2.8206721086308413",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "2.8206721086308413",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.2257302158386447",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.2257302158386447",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "9.927496671582734",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arkansas",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "9.927496671582734",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arkansas",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "8.310385313808945",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arkansas",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "8.310385313808945",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arkansas",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "2.7997071397840982",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "2.7997071397840982",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "10.414552642250088",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arkansas",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "10.414552642250088",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arkansas",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "7.897508723936852",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arkansas",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "7.897508723936852",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "12.066396249649875",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "12.066396249649875",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "17.612296755856114",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "17.612296755856114",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "8.771535973169865",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "8.771535973169865",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "15.630156760523828",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "15.630156760523828",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "6.733677118251244",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arkansas",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "6.733677118251244",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arkansas",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "24.29803626078925",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Arkansas",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "24.29803626078925",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Arkansas",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "6.8809262048951965",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arkansas",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "6.8809262048951965",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Arkansas",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "18.863850117572568",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Arkansas",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "18.863850117572568",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Arkansas",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "3.0688144480496566",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "3.0688144480496566",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "2.2556907922675955",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "2.2556907922675955",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "1.4946609081865505",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "1.4946609081865505",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.2547744670172665",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.2547744670172665",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.2547744670172665",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Arkansas",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Arkansas has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-03-05",
- "date_period": "All Results",
- "value": "3.136175670614199",
- "national_value": "1.7475103377485617",
- "region_value": "2.5908626516851485",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-03-12",
- "date_period": "All Results",
- "value": "3.150698255948251",
- "national_value": "2.675693408084616",
- "region_value": "2.9131958320164335",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-03-19",
- "date_period": "All Results",
- "value": "1.5474885923274455",
- "national_value": "1.5474885923274455",
- "region_value": "1.675283759153643",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-03-26",
- "date_period": "All Results",
- "value": "1.9346082642356723",
- "national_value": "2.055720070472593",
- "region_value": "1.9346082642356723",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-04-02",
- "date_period": "All Results",
- "value": "1.9963559000486097",
- "national_value": "1.6885380112940913",
- "region_value": "1.735607696525803",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-04-09",
- "date_period": "All Results",
- "value": "2.3773685916844864",
- "national_value": "2.1742838341071806",
- "region_value": "2.339779346685215",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-04-16",
- "date_period": "All Results",
- "value": "2.5346542563627934",
- "national_value": "1.8413286484545477",
- "region_value": "2.2017365705505694",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-04-23",
- "date_period": "All Results",
- "value": "1.4050229806583805",
- "national_value": "1.3483509328559706",
- "region_value": "1.3976302139109713",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-04-30",
- "date_period": "All Results",
- "value": "1.6346938442751582",
- "national_value": "1.4914472684711386",
- "region_value": "1.620366126199506",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-05-07",
- "date_period": "All Results",
- "value": "0.99200184758134",
- "national_value": "1.4054487457710798",
- "region_value": "1.02337523588876",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-05-14",
- "date_period": "All Results",
- "value": "1.5823407014508541",
- "national_value": "1.603770824840521",
- "region_value": "1.404052497833363",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-05-21",
- "date_period": "All Results",
- "value": "1.3515726564936443",
- "national_value": "1.6151331114041896",
- "region_value": "1.3530934485015855",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": "1.6338412901054307",
- "national_value": "1.6598224284451173",
- "region_value": "1.5980644511569917",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": "1.3591908991325117",
- "national_value": "1.4734515288198426",
- "region_value": "1.304159764592994",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": "1.3069585088872266",
- "national_value": "1.9124324956062713",
- "region_value": "1.3148740324694157",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": "1.2133551260099062",
- "national_value": "1.3900747712132921",
- "region_value": "1.2005253184049844",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": "1.3310194816554493",
- "national_value": "1.3310194816554493",
- "region_value": "1.3317717640176578",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "1.2595587619247324",
- "national_value": "1.797445827207103",
- "region_value": "1.2442884302652466",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "1.4976520325538445",
- "national_value": "2.265982888946997",
- "region_value": "1.4904280043213236",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "1.295547310925653",
- "national_value": "2.6512503036239994",
- "region_value": "1.3178248801252666",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "1.1704631754707249",
- "national_value": "2.2782237042639117",
- "region_value": "1.2658297899360809",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": "1.7993266102796248",
- "national_value": "1.8043202465812183",
- "region_value": "1.6896104052189551",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "1.1331704803327332",
- "national_value": "1.685820402830163",
- "region_value": "1.1254422072349564",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "1.3652669366769636",
- "national_value": "1.6826083301683215",
- "region_value": "1.374928732448398",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "1.3925261362567227",
- "national_value": "2.124626705610647",
- "region_value": "1.5807719236565074",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "2.1447543506582685",
- "national_value": "2.6837021559305736",
- "region_value": "2.108492076415407",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "1.6819782195709667",
- "national_value": "1.6847888502204156",
- "region_value": "1.0856851952454023",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "1.7944573988877028",
- "national_value": "1.7342704780502864",
- "region_value": "1.0932440375081067",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "2.2506135116145782",
- "national_value": "2.5176843149970507",
- "region_value": "1.358910033206172",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "3.476409544636577",
- "national_value": "3.3062068257654307",
- "region_value": "1.4650795670981622",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "3.379476431011412",
- "national_value": "3.0259000068656716",
- "region_value": "1.9859157080042797",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "4.412336865731797",
- "national_value": "3.5656963666126624",
- "region_value": "2.7614337709265864",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "6.317844550002548",
- "national_value": "5.571054487750484",
- "region_value": "6.097735735580563",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "7.126460833056655",
- "national_value": "5.815815969221436",
- "region_value": "5.0001498690858925",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "8.09420382029756",
- "national_value": "7.972715209443255",
- "region_value": "8.09420382029756",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "9.307088430614685",
- "national_value": "8.36714533097982",
- "region_value": "8.050163017475098",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "12.276623620976931",
- "national_value": "10.662626695924502",
- "region_value": "11.195951673245489",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "14.408179650811618",
- "national_value": "11.980909201182696",
- "region_value": "13.197401758568223",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "13.531934673114378",
- "national_value": "10.608123300225985",
- "region_value": "10.5658039927109",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "17.198915879136223",
- "national_value": "13.542811094208",
- "region_value": "17.238122102927367",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "16.958415708708863",
- "national_value": "12.719191415297415",
- "region_value": "13.183507354755639",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "13.52716160064118",
- "national_value": "11.717398915456236",
- "region_value": "12.03205661149045",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "14.533034071946693",
- "national_value": "10.378844194454414",
- "region_value": "11.710678868118277",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "11.450284707481016",
- "national_value": "9.58426311998286",
- "region_value": "10.016545350386066",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "13.105676401664626",
- "national_value": "8.511935476968219",
- "region_value": "10.438050207780924",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "11.024840338462056",
- "national_value": "7.91219972730154",
- "region_value": "9.26265262242417",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "9.660970173929792",
- "national_value": "6.4040522465371374",
- "region_value": "8.724341840620617",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "7.812489110102352",
- "national_value": "5.57261799627081",
- "region_value": "6.716851233306635",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "7.153624668491859",
- "national_value": "4.596671451155856",
- "region_value": "6.1844918088387395",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "7.260666673580818",
- "national_value": "4.534471689248122",
- "region_value": "5.857488855451447",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "5.706097853578257",
- "national_value": "4.778019873646184",
- "region_value": "6.159171465579225",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "5.2148002094544195",
- "national_value": "3.940062397453282",
- "region_value": "5.104760625348599",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "5.466062294822275",
- "national_value": "3.366182006584707",
- "region_value": "4.836708783229214",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "4.245648858706348",
- "national_value": "2.984187025846241",
- "region_value": "3.6235572733843875",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "3.5389241716840276",
- "national_value": "2.463264084926519",
- "region_value": "3.4100632875166",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "3.050141912798488",
- "national_value": "2.0734171252350273",
- "region_value": "2.411866913022963",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.2880455870439156",
- "national_value": "2.1706895617031954",
- "region_value": "2.271266445471554",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.471355637088706",
- "national_value": "2.029612060659673",
- "region_value": "2.147005652039137",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.9936734968554708",
- "national_value": "1.7212315200834434",
- "region_value": "1.9819460472081987",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.6142878657725854",
- "national_value": "1.4639104218258483",
- "region_value": "1.5419858682344478",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.2573131156823525",
- "national_value": "1.3457689462373816",
- "region_value": "1.2707146202174076",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.5195064392672184",
- "national_value": "1.3444098672308302",
- "region_value": "1.443292238886326",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.3465986290862608",
- "national_value": "1.4600144152295942",
- "region_value": "1.3435613387545668",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.4576475529076638",
- "national_value": "1.4508980845678203",
- "region_value": "1.430055591418352",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.4117966270741473",
- "national_value": "1.3757159403094235",
- "region_value": "1.3727060659615529",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.2919679062120788",
- "national_value": "1.2604448744176628",
- "region_value": "1.2839751640924821",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.3887931738976986",
- "national_value": "1.4989526753060833",
- "region_value": "1.3607571884416894",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.3941996824160192",
- "national_value": "1.3481042238716148",
- "region_value": "1.3886102626022836",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.3975544923037941",
- "national_value": "1.3376078752006206",
- "region_value": "1.382178938433719",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.3802777232811851",
- "national_value": "1.3572731286449182",
- "region_value": "1.3572731286449182",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.382189068414322",
- "national_value": "1.360705677152615",
- "region_value": "1.4047044137440596",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.4167875611112852",
- "national_value": "1.474803324474663",
- "region_value": "1.459326533369778",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.4573782349881124",
- "national_value": "1.4944211195175625",
- "region_value": "1.492965579589258",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.5223500642837327",
- "national_value": "1.3748941802394352",
- "region_value": "1.4157322768529863",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.4738048495438751",
- "national_value": "1.3783354215594579",
- "region_value": "1.4916703045497908",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.446588233165972",
- "national_value": "1.4558057901844157",
- "region_value": "1.4386947303080395",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.436716928250342",
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "2.3506951761530495",
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.5512092647313227",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.5512092647313227",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.737720116211096",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.737720116211096",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.2465136071317855",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.2465136071317855",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.319627299648789",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.319627299648789",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.602035695586228",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.602035695586228",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "3.508931173742732",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "3.508931173742732",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "2.679802094319249",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "2.679802094319249",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.929659336572726",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.929659336572726",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "3.9627118098570384",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "3.9627118098570384",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "4.910323393353351",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "4.910323393353351",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "7.1454654539449365",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "7.1454654539449365",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "9.304024714950014",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "9.304024714950014",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "10.349687167618242",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "10.349687167618242",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "11.644887817122797",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "11.644887817122797",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.29251365566064",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.29251365566064",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "12.969756205294768",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "12.969756205294768",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "13.903964810599017",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "13.903964810599017",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "15.992585408512783",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "15.992585408512783",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "17.746542819436407",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "17.746542819436407",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "15.195551814153948",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "15.195551814153948",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "California",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "11.610295470448545",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "11.610295470448545",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "11.00349359336607",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "11.00349359336607",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "9.642200444519181",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "9.642200444519181",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "10.392623465120597",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "10.392623465120597",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "8.05066473016874",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "8.05066473016874",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "California",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "6.870086118739617",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "6.870086118739617",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "5.862668428022875",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "5.862668428022875",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "5.087025643831965",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "5.087025643831965",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "5.087025643831965",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "California",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "3.738989574119156",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "3.738989574119156",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "3.738989574119156",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.063081310211557",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.063081310211557",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.063081310211557",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "2.7488522547557106",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "2.7488522547557106",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "2.7488522547557106",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "2.5025202645759927",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "2.5025202645759927",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "2.5025202645759927",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.688479990630914",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.688479990630914",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.688479990630914",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.5414735490392595",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.5414735490392595",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.5414735490392595",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.497655658269506",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.497655658269506",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.497655658269506",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.3976353504260297",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.3976353504260297",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.3976353504260297",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.429761566810321",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.429761566810321",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.429761566810321",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.3894311717131747",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.3894311717131747",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.3894311717131747",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.2517104713592837",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.2517104713592837",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.2517104713592837",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.2074353522908021",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.2074353522908021",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.2074353522908021",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.32889600626415",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.32889600626415",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.32889600626415",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.1908495870377793",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.1908495870377793",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.1908495870377793",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.2125990328145981",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.2125990328145981",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.2125990328145981",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.1976691576345946",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.1976691576345946",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.1976691576345946",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0859805277342682",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0859805277342682",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0859805277342682",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0976519392420672",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0976519392420672",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0976519392420672",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.111704147766837",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.111704147766837",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.111704147766837",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.111704147766837",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0666912978143626",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0666912978143626",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0666912978143626",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0666912978143626",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.1198132316481983",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.1198132316481983",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.1198132316481983",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.1198132316481983",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.1149069318911082",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.1149069318911082",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.1149069318911082",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.1149069318911082",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0910387481960189",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0910387481960189",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0910387481960189",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0910387481960189",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0423817608027504",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0423817608027504",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0423817608027504",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0423817608027504",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.2905923587864891",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.2905923587864891",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.2905923587864891",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "California",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.2905923587864891",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "California has 39 site(s) reporting in the past week, and 2 (5%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-05-21",
- "date_period": "All Results",
- "value": "2.468688385983464",
- "national_value": "1.6151331114041896",
- "region_value": "1.3530934485015855",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": "1.7222041999167415",
- "national_value": "1.6598224284451173",
- "region_value": "1.5980644511569917",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": "1.2597157576140772",
- "national_value": "1.4734515288198426",
- "region_value": "1.304159764592994",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": "1.2594055276905722",
- "national_value": "1.9124324956062713",
- "region_value": "1.3148740324694157",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": "1.1221917689263536",
- "national_value": "1.3900747712132921",
- "region_value": "1.2005253184049844",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": "1.3329027603738275",
- "national_value": "1.3310194816554493",
- "region_value": "1.3317717640176578",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "1.3980095459160211",
- "national_value": "1.797445827207103",
- "region_value": "1.2442884302652466",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "2.2235483976249264",
- "national_value": "2.265982888946997",
- "region_value": "1.4904280043213236",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "2.329289124883152",
- "national_value": "2.6512503036239994",
- "region_value": "1.3178248801252666",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "1.3053853464302265",
- "national_value": "2.2782237042639117",
- "region_value": "1.2658297899360809",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": "1.232906870194067",
- "national_value": "1.8043202465812183",
- "region_value": "1.6896104052189551",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "0.9795772553901858",
- "national_value": "1.685820402830163",
- "region_value": "1.1254422072349564",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "1.404709824622147",
- "national_value": "1.6826083301683215",
- "region_value": "1.374928732448398",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "1.622531871585088",
- "national_value": "2.124626705610647",
- "region_value": "1.5807719236565074",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "4.340759871413283",
- "national_value": "2.6837021559305736",
- "region_value": "2.108492076415407",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "2.5488310593137804",
- "national_value": "1.6847888502204156",
- "region_value": "1.0856851952454023",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "0.9313737732116336",
- "national_value": "1.7342704780502864",
- "region_value": "1.0932440375081067",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "1.470181188172863",
- "national_value": "2.5176843149970507",
- "region_value": "1.358910033206172",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "3.7684924904344603",
- "national_value": "3.3062068257654307",
- "region_value": "1.4650795670981622",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "4.108304189551112",
- "national_value": "3.0259000068656716",
- "region_value": "1.9859157080042797",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "7.125391043295587",
- "national_value": "3.5656963666126624",
- "region_value": "2.7614337709265864",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "9.792906939527182",
- "national_value": "5.571054487750484",
- "region_value": "6.097735735580563",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "10.779205869345143",
- "national_value": "5.815815969221436",
- "region_value": "5.0001498690858925",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "11.56156584641088",
- "national_value": "7.972715209443255",
- "region_value": "8.09420382029756",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "11.366747372606163",
- "national_value": "8.36714533097982",
- "region_value": "8.050163017475098",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "15.075522061070753",
- "national_value": "10.662626695924502",
- "region_value": "11.195951673245489",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "10.883973854100624",
- "national_value": "11.980909201182696",
- "region_value": "13.197401758568223",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "15.15459135210207",
- "national_value": "10.608123300225985",
- "region_value": "10.5658039927109",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "16.394555648114846",
- "national_value": "13.542811094208",
- "region_value": "17.238122102927367",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "13.635681626169795",
- "national_value": "12.719191415297415",
- "region_value": "13.183507354755639",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "11.377097116015129",
- "national_value": "11.717398915456236",
- "region_value": "12.03205661149045",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "7.284861218398266",
- "national_value": "10.378844194454414",
- "region_value": "11.710678868118277",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "6.709121166606791",
- "national_value": "9.58426311998286",
- "region_value": "10.016545350386066",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "18.267776632818588",
- "national_value": "8.511935476968219",
- "region_value": "10.438050207780924",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "10.621988458388167",
- "national_value": "7.91219972730154",
- "region_value": "9.26265262242417",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "8.395272560952776",
- "national_value": "6.4040522465371374",
- "region_value": "8.724341840620617",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "6.672530430326887",
- "national_value": "5.57261799627081",
- "region_value": "6.716851233306635",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "4.894714930150394",
- "national_value": "4.596671451155856",
- "region_value": "6.1844918088387395",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "4.268668286707696",
- "national_value": "4.534471689248122",
- "region_value": "5.857488855451447",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "3.5196911873329837",
- "national_value": "4.778019873646184",
- "region_value": "6.159171465579225",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "2.393054830475589",
- "national_value": "3.940062397453282",
- "region_value": "5.104760625348599",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.012643603872176",
- "national_value": "3.366182006584707",
- "region_value": "4.836708783229214",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "5.922108501077196",
- "national_value": "2.984187025846241",
- "region_value": "3.6235572733843875",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "5.090578136442933",
- "national_value": "2.463264084926519",
- "region_value": "3.4100632875166",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.6969407102930902",
- "national_value": "2.0734171252350273",
- "region_value": "2.411866913022963",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "3.0163893452631347",
- "national_value": "2.1706895617031954",
- "region_value": "2.271266445471554",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.5153336912009527",
- "national_value": "2.029612060659673",
- "region_value": "2.147005652039137",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.4996236999423898",
- "national_value": "1.7212315200834434",
- "region_value": "1.9819460472081987",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.0773988203368166",
- "national_value": "1.4639104218258483",
- "region_value": "1.5419858682344478",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.8093812058487884",
- "national_value": "1.3457689462373816",
- "region_value": "1.2707146202174076",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.217636916867921",
- "national_value": "1.3444098672308302",
- "region_value": "1.443292238886326",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.736216968029856",
- "national_value": "1.4600144152295942",
- "region_value": "1.3435613387545668",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.917251520406968",
- "national_value": "1.4508980845678203",
- "region_value": "1.430055591418352",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.2797940541853516",
- "national_value": "1.3757159403094235",
- "region_value": "1.3727060659615529",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "2.489428778636732",
- "national_value": "1.2604448744176628",
- "region_value": "1.2839751640924821",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.2477567392622766",
- "national_value": "1.4989526753060833",
- "region_value": "1.3607571884416894",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.7352115380273936",
- "national_value": "1.3481042238716148",
- "region_value": "1.3886102626022836",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.2435094564516955",
- "national_value": "1.3376078752006206",
- "region_value": "1.382178938433719",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.3628414862886897",
- "national_value": "1.3572731286449182",
- "region_value": "1.3572731286449182",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.9961245232114997",
- "national_value": "1.360705677152615",
- "region_value": "1.4047044137440596",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.3263952464327928",
- "national_value": "1.474803324474663",
- "region_value": "1.459326533369778",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.9621005643507061",
- "national_value": "1.4944211195175625",
- "region_value": "1.492965579589258",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.0592369775417418",
- "national_value": "1.3748941802394352",
- "region_value": "1.4157322768529863",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.1866808082004003",
- "national_value": "1.3783354215594579",
- "region_value": "1.4916703045497908",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.5365545599358068",
- "national_value": "1.4558057901844157",
- "region_value": "1.4386947303080395",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.2278392563769591",
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.883345407198902",
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "2.0335539584064306",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "2.0335539584064306",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.2829445761918905",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.2829445761918905",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.722824100179182",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.722824100179182",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.5116914453305177",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.5116914453305177",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.6482141317769416",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.6482141317769416",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "6.069890605737008",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "6.069890605737008",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "3.5197394918084166",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "3.5197394918084166",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "4.152387091449802",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "4.152387091449802",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "3.390921114743846",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "3.390921114743846",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "6.537969452248529",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "6.537969452248529",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "4.978614112139231",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "4.978614112139231",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "9.254372587249884",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "9.254372587249884",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "5.778482918699726",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "5.778482918699726",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "12.538377584332316",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "12.538377584332316",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "13.159524016461482",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "13.159524016461482",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "10.840624905938608",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "10.840624905938608",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "9.587098088798793",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "9.587098088798793",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": null,
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Colorado",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": null,
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Colorado",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "15.413737877617695",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "15.413737877617695",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "16.170383789764863",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "16.170383789764863",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "12.903468087254875",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "12.903468087254875",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "13.793541248498949",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "13.793541248498949",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "13.44124391179348",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "13.44124391179348",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Colorado",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "6.54971940286177",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "6.54971940286177",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "8.172566952006797",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "8.172566952006797",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "6.8595365231168905",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "6.8595365231168905",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "7.338197443978329",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "7.338197443978329",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "7.058195753503885",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "7.058195753503885",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "7.058195753503885",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "7.108734239324039",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "7.108734239324039",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "7.108734239324039",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "6.0695784328709",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "6.0695784328709",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "6.0695784328709",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "8.166357293267422",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "8.166357293267422",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "8.166357293267422",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Colorado",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "3.548158814750556",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "3.548158814750556",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "3.548158814750556",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "4.973419831729403",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "4.973419831729403",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "4.973419831729403",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Colorado",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "2.7858488134030046",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "2.7858488134030046",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "2.7858488134030046",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "3.0232553023085824",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "3.0232553023085824",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "3.0232553023085824",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.0880289419865985",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.0880289419865985",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.0880289419865985",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "2.110141086645585",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "2.110141086645585",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "2.110141086645585",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "3.3582941751855993",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "3.3582941751855993",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "3.3582941751855993",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.5385555594726619",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.5385555594726619",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.5385555594726619",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.7735545285575571",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.7735545285575571",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.7735545285575571",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.6453837056373422",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.6453837056373422",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.6453837056373422",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.5635621493411769",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.5635621493411769",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.5635621493411769",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "0.965155890240285",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "0.965155890240285",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "0.965155890240285",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.4903990521669428",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.4903990521669428",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.4903990521669428",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.659341759604052",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.659341759604052",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.659341759604052",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.4056865822340616",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.4056865822340616",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.4056865822340616",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.4925303012663989",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.4925303012663989",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.4925303012663989",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.4925303012663989",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "2.309537004818684",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "2.309537004818684",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "2.309537004818684",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "2.309537004818684",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "2.054361378072496",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "2.054361378072496",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "2.054361378072496",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "2.054361378072496",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.8478357963615688",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.8478357963615688",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.8478357963615688",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.8478357963615688",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.7311884197304561",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.7311884197304561",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.7311884197304561",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.7311884197304561",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.6376638653400515",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.6376638653400515",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.6376638653400515",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.6376638653400515",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.4786854245504806",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.4786854245504806",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.4786854245504806",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Colorado",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.4786854245504806",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Colorado has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "3.6539475215918116",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "3.6539475215918116",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "5.334689907309158",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "5.334689907309158",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "7.121692616319298",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "7.121692616319298",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "7.647416031428935",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "7.647416031428935",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "23.379844606293275",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Connecticut",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "23.379844606293275",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "43.385964360804685",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "43.385964360804685",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "43.95690511548747",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "43.95690511548747",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "8.63851957420343",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "8.63851957420343",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "7.648567428147158",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "7.648567428147158",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "11.419309508465405",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Connecticut",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "11.419309508465405",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Connecticut",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "16.247447404843523",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Connecticut",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "16.247447404843523",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Connecticut",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "9.098196180020132",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Connecticut",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "9.098196180020132",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Connecticut",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "4.500419690239339",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "4.500419690239339",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Connecticut",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "2.874500867321191",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "2.874500867321191",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "3.4878691443960332",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "3.4878691443960332",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "2.9115752658691405",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "2.9115752658691405",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "1.7506952124662065",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "1.7506952124662065",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "2.869358869998683",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "2.869358869998683",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.010644592254959",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.010644592254959",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.010644592254959",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Connecticut",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Connecticut has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "0.7618779888801016",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "0.964536720663476",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "1.0799917453484855",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "1.0573317361755676",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "1.4646008728630722",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.7919779885677025",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.330589859793757",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "3.7180337956662393",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.190541402226408",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.4315926843676083",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "0.9630874304782733",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.5316531662671096",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.100904517975055",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.0130945664435467",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "3.4692835860122244",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.9125317637243624",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.4406286238154418",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.404501957345789",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.121340953305171",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.1848107068030715",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.2375902779117662",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.4603778436389885",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.682159935575364",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "2.6739949014724402",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "2.1055980549304913",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.3594249584237315",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.434505527508959",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.7392835089720247",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.916743164188736",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "2.055594806163436",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "2.055594806163436",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.59434702011523",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.59434702011523",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.6028582569847156",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.6028582569847156",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.392836898393828",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.392836898393828",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.8124757392048738",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.8124757392048738",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.451558075061623",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.451558075061623",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.2818015053616518",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.2818015053616518",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.398675960697423",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.398675960697423",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.0910940577794896",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.0910940577794896",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.167685334022324",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.167685334022324",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.315541379123995",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.315541379123995",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "14.464483712817248",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Delaware",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "14.464483712817248",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Delaware",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "14.446067379372696",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Delaware",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "14.446067379372696",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Delaware",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "9.771622753602784",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Delaware",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "9.771622753602784",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Delaware",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "14.541982198730945",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Delaware",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "14.541982198730945",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Delaware",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "21.282117513931404",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Delaware",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "21.282117513931404",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Delaware",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "28.709808946298402",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Delaware",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "28.709808946298402",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Delaware",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "13.655151149837216",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Delaware",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "13.655151149837216",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Delaware",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "11.266809408511001",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Delaware",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "11.266809408511001",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Delaware",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "8.448193131060806",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Delaware",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "8.448193131060806",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Delaware",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "4.940746638851303",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Delaware",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "4.940746638851303",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Delaware",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "1.634587537618883",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "1.634587537618883",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "2.8355965174228563",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "2.8355965174228563",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "1.6377087279798364",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "1.6377087279798364",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "1.963978535552401",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "1.963978535552401",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "1.465442236219799",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "1.465442236219799",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.3015802216845243",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.3015802216845243",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "2.2819251433655685",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "2.2819251433655685",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "2.2819251433655685",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.133655540561353",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.133655540561353",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.133655540561353",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.5896512324925733",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.5896512324925733",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.5896512324925733",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.617455445446891",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.617455445446891",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.617455445446891",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "2.1155859773600643",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "2.1155859773600643",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "2.1155859773600643",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.7108573193313432",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.7108573193313432",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.7108573193313432",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.7330682113040519",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.7330682113040519",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.7330682113040519",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.4152444352999494",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.4152444352999494",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.4152444352999494",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.5195826378103663",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.5195826378103663",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.5195826378103663",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.4946114593073712",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.4946114593073712",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.4946114593073712",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.5178111585748835",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.5178111585748835",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.5178111585748835",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.3979279147542818",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.3979279147542818",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.3979279147542818",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.4962104645314827",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.4962104645314827",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.4962104645314827",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.2847184402095488",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.2847184402095488",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.2847184402095488",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.3262223881142454",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.3262223881142454",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.3262223881142454",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.313865052182325",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.313865052182325",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.313865052182325",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2891477376636935",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2891477376636935",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2891477376636935",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.673954893457859",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.673954893457859",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.673954893457859",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.2548921985894967",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.2548921985894967",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.2548921985894967",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.3718269750753032",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.3718269750753032",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.3718269750753032",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.3718269750753032",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.6237513363905833",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.6237513363905833",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.6237513363905833",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.6237513363905833",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.2944256129172675",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.2944256129172675",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.2944256129172675",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.2944256129172675",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.3534771013954958",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.3534771013954958",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.3534771013954958",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.3534771013954958",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.1281717696263873",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.1281717696263873",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.1281717696263873",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.1281717696263873",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.1746854252356196",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.1746854252356196",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.1746854252356196",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.1746854252356196",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0834317800069408",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0834317800069408",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0834317800069408",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Delaware",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0834317800069408",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Delaware has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "9.751334577556532",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "9.751334577556532",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "10.030072508272223",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "10.030072508272223",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "14.285809388449865",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "14.285809388449865",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "10.796460283015422",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "10.796460283015422",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "13.042803271733279",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "13.042803271733279",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "11.635317726980972",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "11.635317726980972",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "12.342301601038438",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "District of Columbia",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "12.342301601038438",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "District of Columbia",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "10.083634915570581",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "10.083634915570581",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "No Data",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "9.466606995804195",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "9.466606995804195",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "District of Columbia",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "5.599960206158222",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "5.599960206158222",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "7.375282245647715",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "7.375282245647715",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "6.0576260471039065",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "6.0576260471039065",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "6.246569085546483",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "6.246569085546483",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "5.687040407240834",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "5.687040407240834",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "5.030401299454094",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "5.030401299454094",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "2.876691192955505",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "2.876691192955505",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "6.92242344197638",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "6.92242344197638",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "6.92242344197638",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "4.547515240012468",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "4.547515240012468",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "4.547515240012468",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "0.9203750934590691",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "0.9203750934590691",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "0.9203750934590691",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "2.60731645216115",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "2.60731645216115",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "2.60731645216115",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "2.5636722217078236",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "2.5636722217078236",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "2.5636722217078236",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "3.208591518720246",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "3.208591518720246",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "3.208591518720246",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.514062583052673",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.514062583052673",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.514062583052673",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "0.8263811714794679",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "0.8263811714794679",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "0.8263811714794679",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.202991740771866",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.202991740771866",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.202991740771866",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.4978644544867041",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.4978644544867041",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.4978644544867041",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0322378982243396",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0322378982243396",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0322378982243396",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.144649151592125",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.144649151592125",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.144649151592125",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "0.7952967842319855",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "0.7952967842319855",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "0.7952967842319855",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.11929079513629",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.11929079513629",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.11929079513629",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "District of Columbia",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Florida",
- "date": "2022-04-09",
- "date_period": "All Results",
- "value": "2.6466169414140635",
- "national_value": "2.1742838341071806",
- "region_value": "1.5925606306818119",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-04-16",
- "date_period": "All Results",
- "value": "1.4056189852379648",
- "national_value": "1.8413286484545477",
- "region_value": "1.4074239331940275",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-04-23",
- "date_period": "All Results",
- "value": "1.2653840071058846",
- "national_value": "1.3483509328559706",
- "region_value": "1.2038815581467808",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-04-30",
- "date_period": "All Results",
- "value": "1.3625284107427713",
- "national_value": "1.4914472684711386",
- "region_value": "1.248256862066513",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-05-07",
- "date_period": "All Results",
- "value": "1.8965110225901285",
- "national_value": "1.4054487457710798",
- "region_value": "2.213774693617851",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-05-14",
- "date_period": "All Results",
- "value": "3.749903296297538",
- "national_value": "1.603770824840521",
- "region_value": "2.6272930987891",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-05-21",
- "date_period": "All Results",
- "value": "5.015921172931347",
- "national_value": "1.6151331114041896",
- "region_value": "1.7238064838436258",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": "2.233637756012857",
- "national_value": "1.6598224284451173",
- "region_value": "2.233637756012857",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": "2.401115977155001",
- "national_value": "1.4734515288198426",
- "region_value": "2.1810797861808116",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": "7.875404884091181",
- "national_value": "1.9124324956062713",
- "region_value": "4.706036033028935",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": "3.917446781858196",
- "national_value": "1.3900747712132921",
- "region_value": "2.847876725408067",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": "1.2833419781068183",
- "national_value": "1.3310194816554493",
- "region_value": "2.4130779974770347",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "1.565083760821781",
- "national_value": "1.797445827207103",
- "region_value": "3.1136751685133754",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "2.872860618880695",
- "national_value": "2.265982888946997",
- "region_value": "4.493855058327775",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "8.23295135815591",
- "national_value": "2.6512503036239994",
- "region_value": "7.101660345481074",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "4.569047247433098",
- "national_value": "2.2782237042639117",
- "region_value": "4.569047247433098",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": "4.495522192571407",
- "national_value": "1.8043202465812183",
- "region_value": "4.127281893119541",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "2.9872315631828292",
- "national_value": "1.685820402830163",
- "region_value": "4.137109462906029",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "3.813109380309971",
- "national_value": "1.6826083301683215",
- "region_value": "2.845086277129335",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "4.121119197097655",
- "national_value": "2.124626705610647",
- "region_value": "5.299499119809991",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "3.628743388809385",
- "national_value": "2.6837021559305736",
- "region_value": "5.886541834333909",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "3.4583200716319147",
- "national_value": "1.6847888502204156",
- "region_value": "5.253371358392005",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "5.916596969812261",
- "national_value": "1.7342704780502864",
- "region_value": "3.943501391247169",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "6.625451018238612",
- "national_value": "2.5176843149970507",
- "region_value": "4.342884914848835",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "7.215234569601016",
- "national_value": "3.3062068257654307",
- "region_value": "3.494108303925306",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "7.825330945464481",
- "national_value": "3.0259000068656716",
- "region_value": "6.177373547483146",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "8.619748536997257",
- "national_value": "3.5656963666126624",
- "region_value": "4.9652604206011715",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "8.997799603389495",
- "national_value": "5.571054487750484",
- "region_value": "4.512398753521249",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "7.1075782744440374",
- "national_value": "5.815815969221436",
- "region_value": "6.483962575074571",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "8.366461762648298",
- "national_value": "7.972715209443255",
- "region_value": "6.786697541831071",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "10.074079019674599",
- "national_value": "8.36714533097982",
- "region_value": "7.870550389438764",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "11.372665269687719",
- "national_value": "10.662626695924502",
- "region_value": "7.293131701028378",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "9.352842946342749",
- "national_value": "11.980909201182696",
- "region_value": "8.453843241798953",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "11.529044707730247",
- "national_value": "10.608123300225985",
- "region_value": "10.353181175763877",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "9.238332630969765",
- "national_value": "13.542811094208",
- "region_value": "7.937538761584929",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "8.192378655722004",
- "national_value": "12.719191415297415",
- "region_value": "11.319823345006384",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "10.455588997100607",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "9.72013434467164",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "8.147607231455062",
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "9.090793726264547",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "9.70183243635713",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "4.5929463449102235",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "4.0960802793715825",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "1.5758843427893054",
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "3.890688786182764",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "1.4374651121888533",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "1.4358672484271806",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "1.6077651069886985",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "2.927802118514673",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "2.4213951503089977",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.1713705282932256",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.644945924669508",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.583599092632215",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "2.2592324120683154",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.2752349906030978",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.4537347182719491",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.3137297630003788",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.7443444389954716",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.7677966540117689",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.7289058594104165",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.458685273483293",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "2.268756729683769",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.6555493264478764",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "2.1548563302628923",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "2.017710761341925",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.605016579854577",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "2.8834984994469606",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.805372056285227",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "3.5286960366200018",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.8136537093090443",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.5995343867382021",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.47138033636339",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.9918262661844164",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "2.08034517768698",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "2.08034517768698",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "3.0455940612537065",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "3.0455940612537065",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "4.476409638570828",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "4.476409638570828",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "4.785647385889833",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "4.785647385889833",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "9.33523686412282",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "9.33523686412282",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "9.759601180786387",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "9.759601180786387",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "8.446526908395775",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "8.446526908395775",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "10.65320999092893",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "10.65320999092893",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "10.073814863011012",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "10.073814863011012",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "10.637515724764768",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "10.637515724764768",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "15.149067070848625",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "15.149067070848625",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "14.831870370633272",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "14.831870370633272",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "14.382749119672319",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "14.382749119672319",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "14.490874013489405",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "14.490874013489405",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "14.393947017590005",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "14.393947017590005",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "11.2199884096323",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "11.2199884096323",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "11.006386404250524",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "11.006386404250524",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "10.48831416070412",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "10.48831416070412",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "11.968493899226871",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "11.968493899226871",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Florida",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "12.637401428762509",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "12.637401428762509",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Florida",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "7.588216080297286",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "7.588216080297286",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "6.816921342104045",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "6.816921342104045",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "6.82494146366239",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "6.82494146366239",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "6.4238670755374425",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "6.4238670755374425",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "5.208830705002777",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "5.208830705002777",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Florida",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "3.402023657399349",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "3.402023657399349",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "3.176796897693361",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "3.176796897693361",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "3.0144129158799853",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "3.0144129158799853",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "3.0144129158799853",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "3.003356650636687",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "3.003356650636687",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "3.003356650636687",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "2.7067380422425167",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "2.7067380422425167",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "2.7067380422425167",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.5137231193057956",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.5137231193057956",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.5137231193057956",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "2.321954694076501",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "2.321954694076501",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "2.321954694076501",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.9849426963442935",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.9849426963442935",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.9849426963442935",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.5133902593848927",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.5133902593848927",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.5133902593848927",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.6483345003018424",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.6483345003018424",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.6483345003018424",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.33649861815626",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.33649861815626",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.33649861815626",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.2896960588205695",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.2896960588205695",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.2896960588205695",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.4504705980223487",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.4504705980223487",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.4504705980223487",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.717030531654347",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.717030531654347",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.717030531654347",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.378682984799973",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.378682984799973",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.378682984799973",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.4678883162792453",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.4678883162792453",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.4678883162792453",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.6069299714324528",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.6069299714324528",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.6069299714324528",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.3361792662789296",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.3361792662789296",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.3361792662789296",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.418484212291817",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.418484212291817",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.418484212291817",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.2344532431955761",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.2344532431955761",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.2344532431955761",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.3961067304251178",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.3961067304251178",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.3961067304251178",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.4832283926537457",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.4832283926537457",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.4832283926537457",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.4832283926537457",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.4380095713240948",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.4380095713240948",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.4380095713240948",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.4380095713240948",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.2429675576206374",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.2429675576206374",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.2429675576206374",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.2429675576206374",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.9002135554374506",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.9002135554374506",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.9002135554374506",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.9002135554374506",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.5362854490895608",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.5362854490895608",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.5362854490895608",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.5362854490895608",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.3805474820036148",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.3805474820036148",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.3805474820036148",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.3805474820036148",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.4909660503220408",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.4909660503220408",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.4909660503220408",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Florida",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.4909660503220408",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Florida has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "6.599841382192388",
- "national_value": "1.797445827207103",
- "region_value": "3.1136751685133754",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "6.519062856210709",
- "national_value": "2.265982888946997",
- "region_value": "4.493855058327775",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "7.6168611514331",
- "national_value": "2.6512503036239994",
- "region_value": "7.101660345481074",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "4.369203365260505",
- "national_value": "2.2782237042639117",
- "region_value": "4.569047247433098",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.8043202465812183",
- "region_value": "4.127281893119541",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Georgia",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "5.369691625477499",
- "national_value": "1.685820402830163",
- "region_value": "4.137109462906029",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "6.004382266469451",
- "national_value": "1.6826083301683215",
- "region_value": "2.845086277129335",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "5.765443374193474",
- "national_value": "2.124626705610647",
- "region_value": "5.299499119809991",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "12.57718871693279",
- "national_value": "2.6837021559305736",
- "region_value": "5.886541834333909",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "8.260623761599502",
- "national_value": "1.6847888502204156",
- "region_value": "5.253371358392005",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "6.712719925856864",
- "national_value": "1.7342704780502864",
- "region_value": "3.943501391247169",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "7.093461152409556",
- "national_value": "2.5176843149970507",
- "region_value": "4.342884914848835",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "9.899846240052748",
- "national_value": "3.3062068257654307",
- "region_value": "3.494108303925306",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "10.845088741315857",
- "national_value": "3.0259000068656716",
- "region_value": "6.177373547483146",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "9.409674210368342",
- "national_value": "3.5656963666126624",
- "region_value": "4.9652604206011715",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "11.527894409517666",
- "national_value": "5.571054487750484",
- "region_value": "4.512398753521249",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "8.316449850823014",
- "national_value": "5.815815969221436",
- "region_value": "6.483962575074571",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "12.414297894946278",
- "national_value": "7.972715209443255",
- "region_value": "6.786697541831071",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "9.118488147550464",
- "national_value": "8.36714533097982",
- "region_value": "7.870550389438764",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "7.327987825947144",
- "national_value": "10.662626695924502",
- "region_value": "7.293131701028378",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "8.188503903226731",
- "national_value": "11.980909201182696",
- "region_value": "8.453843241798953",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "10.977407855230567",
- "national_value": "10.608123300225985",
- "region_value": "10.353181175763877",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "10.393733104743372",
- "national_value": "13.542811094208",
- "region_value": "7.937538761584929",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "13.393922248972558",
- "national_value": "12.719191415297415",
- "region_value": "11.319823345006384",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "14.558488215879033",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "9.797452940096552",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "9.234120793019382",
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "7.377927408341524",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "5.710080713323407",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "6.02907653744226",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "5.927533886167051",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "4.039577584285194",
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "5.334549403722923",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "4.159792902822163",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "3.6211189418854355",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.4656726490963448",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.287621311162205",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.6369698692423396",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.609701550705798",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.637182200069861",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.3937060035172508",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.6803501379177168",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.5848432618858075",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.5533437869046476",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.2777023318386718",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.1841519946204362",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.4539163242236044",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.833169609218298",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.337606971886385",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.2900571788327404",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.388024310360898",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.3406842367383653",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.456207931882867",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.2659896151414936",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.4253016156317961",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.7324148745198154",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.9317258031739126",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.3085036326370558",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.4669614475272712",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "2.421206337861671",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "2.5182491348450595",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "2.18151415809579",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "2.18151415809579",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.2793348208969295",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.2793348208969295",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "3.9652666063892443",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "3.9652666063892443",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "4.582907448732035",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "4.582907448732035",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "5.820010715969622",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "5.820010715969622",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "8.76827592387313",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "8.76827592387313",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "10.117182528740436",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "10.117182528740436",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "12.121012899772255",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "12.121012899772255",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "13.685876583417468",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "13.685876583417468",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "11.742844082080225",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "11.742844082080225",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "15.983747572666681",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "15.983747572666681",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "16.518932375181645",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "16.518932375181645",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "15.45870324202448",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "15.45870324202448",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "14.866337587635925",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "14.866337587635925",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.680842916547732",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.680842916547732",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "13.417707357626778",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "13.417707357626778",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "14.292547639801544",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "14.292547639801544",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "9.024120369583088",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "9.024120369583088",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "13.287326226113848",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "13.287326226113848",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Georgia",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "11.922209488609454",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "11.922209488609454",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Georgia",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "7.854185656495494",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "7.854185656495494",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "6.415291351238311",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "6.415291351238311",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "7.656422949385563",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "7.656422949385563",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "6.5773153751746705",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "6.5773153751746705",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "7.970349853210232",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "7.970349853210232",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "5.968155553966634",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "5.968155553966634",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "4.145720447330315",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "4.145720447330315",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "3.919751561625059",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "3.919751561625059",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "3.919751561625059",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "4.805660382030432",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "4.805660382030432",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "4.805660382030432",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "2.9421215671305023",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "2.9421215671305023",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "2.9421215671305023",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "4.015060850775116",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "4.015060850775116",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "4.015060850775116",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Georgia",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "3.3104336664652525",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "3.3104336664652525",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "3.3104336664652525",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.941228021099923",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.941228021099923",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.941228021099923",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.3284699013905965",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.3284699013905965",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.3284699013905965",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.4045638873127155",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.4045638873127155",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.4045638873127155",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.8755958117050244",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.8755958117050244",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.8755958117050244",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.3005636663623938",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.3005636663623938",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.3005636663623938",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.495562888992998",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.495562888992998",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.495562888992998",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.3846548811618336",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.3846548811618336",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.3846548811618336",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.3578863278754678",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.3578863278754678",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.3578863278754678",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.4558079595270215",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.4558079595270215",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.4558079595270215",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.8757739350976765",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.8757739350976765",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.8757739350976765",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.705522432113419",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.705522432113419",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.705522432113419",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2772811286547057",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2772811286547057",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2772811286547057",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.587189153905448",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.587189153905448",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.587189153905448",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.7081813713581426",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.7081813713581426",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.7081813713581426",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.606842234398222",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.606842234398222",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.606842234398222",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.606842234398222",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.4930202654947893",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.4930202654947893",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.4930202654947893",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.4930202654947893",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.4419099311741133",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.4419099311741133",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.4419099311741133",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.4419099311741133",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.3516519255764923",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.3516519255764923",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.3516519255764923",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.3516519255764923",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.5624761816947894",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.5624761816947894",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.5624761816947894",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.5624761816947894",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.5101576782336177",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.5101576782336177",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.5101576782336177",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.5101576782336177",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "2.0846420873818587",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "2.0846420873818587",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "2.0846420873818587",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Georgia",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "2.0846420873818587",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Georgia has 8 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.2908923935978867",
- "national_value": "1.4600144152295942",
- "region_value": "1.3435613387545668",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.4024285386402748",
- "national_value": "1.4508980845678203",
- "region_value": "1.430055591418352",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.138501411040682",
- "national_value": "1.3757159403094235",
- "region_value": "1.3727060659615529",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.012972438791013",
- "national_value": "1.2604448744176628",
- "region_value": "1.2839751640924821",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4989526753060833",
- "region_value": "1.3607571884416894",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Hawaii",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3481042238716148",
- "region_value": "1.3886102626022836",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Hawaii",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3376078752006206",
- "region_value": "1.382178938433719",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Hawaii",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.2752292510203718",
- "national_value": "1.3572731286449182",
- "region_value": "1.3572731286449182",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.4454244081088659",
- "national_value": "1.360705677152615",
- "region_value": "1.4047044137440596",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "2.2992695407517627",
- "national_value": "1.474803324474663",
- "region_value": "1.459326533369778",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "2.332677472292454",
- "national_value": "1.4944211195175625",
- "region_value": "1.492965579589258",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.2407004788548708",
- "national_value": "1.3748941802394352",
- "region_value": "1.4157322768529863",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "2.2130114489927375",
- "national_value": "1.3783354215594579",
- "region_value": "1.4916703045497908",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "2.5309684071297975",
- "national_value": "1.4558057901844157",
- "region_value": "1.4386947303080395",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "2.676944480754093",
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "2.91241687843372",
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "2.9776527670182693",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "2.9776527670182693",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.6421659058621652",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.6421659058621652",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.921836280354982",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.921836280354982",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "4.836398770307787",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "4.836398770307787",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "7.230645999563761",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "7.230645999563761",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "6.45906585159476",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "6.45906585159476",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "8.633001348384195",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "8.633001348384195",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "7.075983789489131",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "7.075983789489131",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "10.1221860194006",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "10.1221860194006",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "9.239813481685323",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "9.239813481685323",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "11.853966514669708",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "11.853966514669708",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "9.925611237794676",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "9.925611237794676",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "7.583422808331311",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "7.583422808331311",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "10.909171986719159",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "10.909171986719159",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "11.206307882891572",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "11.206307882891572",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "12.114690252935528",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "12.114690252935528",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "11.133157678614818",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "11.133157678614818",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "10.064054473522164",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "10.064054473522164",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "11.983388216355875",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "11.983388216355875",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "9.06767555511314",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "9.06767555511314",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Hawaii",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "5.863752214336737",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "5.863752214336737",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "7.881023522991878",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "7.881023522991878",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "7.606204683652087",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "7.606204683652087",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "4.11482190778559",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "4.11482190778559",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "3.1578224342198586",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "3.1578224342198586",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "4.705110052523971",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "4.705110052523971",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "3.673718802938636",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "3.673718802938636",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "2.1061535561832447",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "2.1061535561832447",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "2.1061535561832447",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.831556788032128",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.831556788032128",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.831556788032128",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.8831860494476764",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.8831860494476764",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.8831860494476764",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.6417211089771058",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.6417211089771058",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.6417211089771058",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.5717354543079551",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.5717354543079551",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.5717354543079551",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.1227005349005994",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.1227005349005994",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.1227005349005994",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.1296110800240124",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.1296110800240124",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.1296110800240124",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.440397643013604",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.440397643013604",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.440397643013604",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0644732302407136",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0644732302407136",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0644732302407136",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0383132141022933",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0383132141022933",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0383132141022933",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0303540811804586",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0303540811804586",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0303540811804586",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.1319373826548542",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.1319373826548542",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.1319373826548542",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.1562545303445042",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.1562545303445042",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.1562545303445042",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.1822321184652982",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.1822321184652982",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.1822321184652982",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.201271817171144",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.201271817171144",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.201271817171144",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0787104466336692",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0787104466336692",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0787104466336692",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0365247964912432",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0365247964912432",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0365247964912432",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Hawaii",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Hawaii has 7 site(s) reporting in the past week, and 3 (43%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-03-05",
- "date_period": "All Results",
- "value": "1.3929770667201384",
- "national_value": "1.7475103377485617",
- "region_value": "2.5908626516851485",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-03-12",
- "date_period": "All Results",
- "value": "1.5036139260236763",
- "national_value": "2.675693408084616",
- "region_value": "2.9131958320164335",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-03-19",
- "date_period": "All Results",
- "value": "3.23830892225508",
- "national_value": "1.5474885923274455",
- "region_value": "1.675283759153643",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-03-26",
- "date_period": "All Results",
- "value": "1.4201039548687748",
- "national_value": "2.055720070472593",
- "region_value": "1.9346082642356723",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-04-02",
- "date_period": "All Results",
- "value": "1.2879915437055838",
- "national_value": "1.6885380112940913",
- "region_value": "1.735607696525803",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-04-09",
- "date_period": "All Results",
- "value": "1.6363639202388451",
- "national_value": "2.1742838341071806",
- "region_value": "2.339779346685215",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-04-16",
- "date_period": "All Results",
- "value": "0.8834947302571438",
- "national_value": "1.8413286484545477",
- "region_value": "2.2017365705505694",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-04-23",
- "date_period": "All Results",
- "value": "0.9774011111760911",
- "national_value": "1.3483509328559706",
- "region_value": "1.3976302139109713",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-04-30",
- "date_period": "All Results",
- "value": "1.620366126199506",
- "national_value": "1.4914472684711386",
- "region_value": "1.620366126199506",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-05-07",
- "date_period": "All Results",
- "value": "1.4570640011927676",
- "national_value": "1.4054487457710798",
- "region_value": "1.02337523588876",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-05-14",
- "date_period": "All Results",
- "value": "1.0086204526288012",
- "national_value": "1.603770824840521",
- "region_value": "1.404052497833363",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-05-21",
- "date_period": "All Results",
- "value": "1.0537310792999623",
- "national_value": "1.6151331114041896",
- "region_value": "1.3530934485015855",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": "1.562287612208553",
- "national_value": "1.6598224284451173",
- "region_value": "1.5980644511569917",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": "1.233144237167091",
- "national_value": "1.4734515288198426",
- "region_value": "1.304159764592994",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": "1.9922808123767526",
- "national_value": "1.9124324956062713",
- "region_value": "1.3148740324694157",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": "1.977905056354631",
- "national_value": "1.3900747712132921",
- "region_value": "1.2005253184049844",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": "1.0965929416770022",
- "national_value": "1.3310194816554493",
- "region_value": "1.3317717640176578",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "1.0049275173761532",
- "national_value": "1.797445827207103",
- "region_value": "1.2442884302652466",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "1.0037270777168785",
- "national_value": "2.265982888946997",
- "region_value": "1.4904280043213236",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "1.11622230490783",
- "national_value": "2.6512503036239994",
- "region_value": "1.3178248801252666",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "1.6167642952928922",
- "national_value": "2.2782237042639117",
- "region_value": "1.2658297899360809",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": "1.0425712843585968",
- "national_value": "1.8043202465812183",
- "region_value": "1.6896104052189551",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "1.1701835802603415",
- "national_value": "1.685820402830163",
- "region_value": "1.1254422072349564",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "0.8925395616079405",
- "national_value": "1.6826083301683215",
- "region_value": "1.374928732448398",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "1.6552462888857453",
- "national_value": "2.124626705610647",
- "region_value": "1.5807719236565074",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "1.0505246892612121",
- "national_value": "2.6837021559305736",
- "region_value": "2.108492076415407",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "0.9543708784984745",
- "national_value": "1.6847888502204156",
- "region_value": "1.0856851952454023",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "0.8307417329598681",
- "national_value": "1.7342704780502864",
- "region_value": "1.0932440375081067",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "1.1917330902924983",
- "national_value": "2.5176843149970507",
- "region_value": "1.358910033206172",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "1.3959822842627954",
- "national_value": "3.3062068257654307",
- "region_value": "1.4650795670981622",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "2.5218681445579247",
- "national_value": "3.0259000068656716",
- "region_value": "1.9859157080042797",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "1.4438781274931696",
- "national_value": "3.5656963666126624",
- "region_value": "2.7614337709265864",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "1.294048527911533",
- "national_value": "5.571054487750484",
- "region_value": "6.097735735580563",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "2.7993007338631073",
- "national_value": "5.815815969221436",
- "region_value": "5.0001498690858925",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "3.585602695061896",
- "national_value": "7.972715209443255",
- "region_value": "8.09420382029756",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "4.0062802352137",
- "national_value": "8.36714533097982",
- "region_value": "8.050163017475098",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "10.781035898860454",
- "national_value": "10.662626695924502",
- "region_value": "11.195951673245489",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "11.265326781018269",
- "national_value": "11.980909201182696",
- "region_value": "13.197401758568223",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "17.02894965912667",
- "national_value": "10.608123300225985",
- "region_value": "10.5658039927109",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "27.307767058766682",
- "national_value": "13.542811094208",
- "region_value": "17.238122102927367",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Idaho",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "26.738232557831754",
- "national_value": "12.719191415297415",
- "region_value": "13.183507354755639",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Idaho",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "28.220554725055532",
- "national_value": "11.717398915456236",
- "region_value": "12.03205661149045",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Idaho",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "24.37695073376284",
- "national_value": "10.378844194454414",
- "region_value": "11.710678868118277",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Idaho",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "27.733495754245137",
- "national_value": "9.58426311998286",
- "region_value": "10.016545350386066",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Idaho",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "25.390940953396534",
- "national_value": "8.511935476968219",
- "region_value": "10.438050207780924",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Idaho",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "15.756367437696134",
- "national_value": "7.91219972730154",
- "region_value": "9.26265262242417",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "13.816809290952728",
- "national_value": "6.4040522465371374",
- "region_value": "8.724341840620617",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "10.400857444299659",
- "national_value": "5.57261799627081",
- "region_value": "6.716851233306635",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "11.153252581920121",
- "national_value": "4.596671451155856",
- "region_value": "6.1844918088387395",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "7.892528704369769",
- "national_value": "4.534471689248122",
- "region_value": "5.857488855451447",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "8.019300990695742",
- "national_value": "4.778019873646184",
- "region_value": "6.159171465579225",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "5.88081871508422",
- "national_value": "3.940062397453282",
- "region_value": "5.104760625348599",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "6.742211024578235",
- "national_value": "3.366182006584707",
- "region_value": "4.836708783229214",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "4.356834825306384",
- "national_value": "2.984187025846241",
- "region_value": "3.6235572733843875",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "2.4687727742223755",
- "national_value": "2.463264084926519",
- "region_value": "3.4100632875166",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "6.2325500437975485",
- "national_value": "2.0734171252350273",
- "region_value": "2.411866913022963",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "3.908903138333842",
- "national_value": "2.1706895617031954",
- "region_value": "2.271266445471554",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.873102747514478",
- "national_value": "2.029612060659673",
- "region_value": "2.147005652039137",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "2.2015888625431628",
- "national_value": "1.7212315200834434",
- "region_value": "1.9819460472081987",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.0427501978452736",
- "national_value": "1.4639104218258483",
- "region_value": "1.5419858682344478",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.0454725274709051",
- "national_value": "1.3457689462373816",
- "region_value": "1.2707146202174076",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.2841880942721415",
- "national_value": "1.3444098672308302",
- "region_value": "1.443292238886326",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.8543595195642277",
- "national_value": "1.4600144152295942",
- "region_value": "1.3435613387545668",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.1350470033947222",
- "national_value": "1.4508980845678203",
- "region_value": "1.430055591418352",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.2101561059645647",
- "national_value": "1.3757159403094235",
- "region_value": "1.3727060659615529",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.158476552279874",
- "national_value": "1.2604448744176628",
- "region_value": "1.2839751640924821",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.2711373518819415",
- "national_value": "1.4989526753060833",
- "region_value": "1.3607571884416894",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.3560746247728017",
- "national_value": "1.3481042238716148",
- "region_value": "1.3886102626022836",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.53522090122844",
- "national_value": "1.3376078752006206",
- "region_value": "1.382178938433719",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.2652508860888603",
- "national_value": "1.3572731286449182",
- "region_value": "1.3572731286449182",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.8021596381911336",
- "national_value": "1.360705677152615",
- "region_value": "1.4047044137440596",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "2.419595721803256",
- "national_value": "1.474803324474663",
- "region_value": "1.459326533369778",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.3052662680947258",
- "national_value": "1.4944211195175625",
- "region_value": "1.492965579589258",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.410377272446605",
- "national_value": "1.3748941802394352",
- "region_value": "1.4157322768529863",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.4971482318833154",
- "national_value": "1.3783354215594579",
- "region_value": "1.4916703045497908",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.2988307506443302",
- "national_value": "1.4558057901844157",
- "region_value": "1.4386947303080395",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.9270608504512554",
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "2.5691022812756175",
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.9980291989148686",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.9980291989148686",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.9334769411269646",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.9334769411269646",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.696478378009357",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.696478378009357",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.470987006801098",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.470987006801098",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.7637397221382822",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.7637397221382822",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "2.7027012551016534",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "2.7027012551016534",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.4672034781056391",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.4672034781056391",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.5058062441558138",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.5058062441558138",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.513748820865817",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.513748820865817",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.4765820162060599",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.4765820162060599",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.051513104106515",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.051513104106515",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "3.1741597176246867",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "3.1741597176246867",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "4.610269688249013",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "4.610269688249013",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "9.021376037861893",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "9.021376037861893",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "7.65994446216911",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "7.65994446216911",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "13.881568185508955",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "13.881568185508955",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "10.107623297648052",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "10.107623297648052",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "18.29174633414885",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "18.29174633414885",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "17.278316242606827",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "17.278316242606827",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "17.170562025709142",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "17.170562025709142",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "15.861065109208331",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "15.861065109208331",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "10.777621996332577",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "10.777621996332577",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "12.080786874976576",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "12.080786874976576",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "11.347491782609431",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "11.347491782609431",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "12.97394665617911",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "12.97394665617911",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "14.19210024530309",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "14.19210024530309",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "13.403390229715592",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "13.403390229715592",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Idaho",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "10.147921744004385",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "10.147921744004385",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "10.147921744004385",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Idaho",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "7.1141632454825805",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "7.1141632454825805",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "7.1141632454825805",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "4.88053254057061",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "4.88053254057061",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "4.88053254057061",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "6.388795766602641",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "6.388795766602641",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "6.388795766602641",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Idaho",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "3.9914770239490793",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "3.9914770239490793",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "3.9914770239490793",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.9778592286706504",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.9778592286706504",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.9778592286706504",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "3.6023838511864796",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "3.6023838511864796",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "3.6023838511864796",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "3.969600237864919",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "3.969600237864919",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "3.969600237864919",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.5304671998577557",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.5304671998577557",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.5304671998577557",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.4749573635606772",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.4749573635606772",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.4749573635606772",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.3346824135656512",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.3346824135656512",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.3346824135656512",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.1751358245271362",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.1751358245271362",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.1751358245271362",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.668655893324416",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.668655893324416",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.668655893324416",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.8740716226936778",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.8740716226936778",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.8740716226936778",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.2876870512718197",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.2876870512718197",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.2876870512718197",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.1125381640951322",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.1125381640951322",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.1125381640951322",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.4165674499561067",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.4165674499561067",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.4165674499561067",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.4493774556370784",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.4493774556370784",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.4493774556370784",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "0.995547713036579",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "0.995547713036579",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "0.995547713036579",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.2350983796222035",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.2350983796222035",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.2350983796222035",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.2350983796222035",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.2889916194147166",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.2889916194147166",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.2889916194147166",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.2889916194147166",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.6911457377041215",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.6911457377041215",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.6911457377041215",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.6911457377041215",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.452554562112809",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.452554562112809",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.452554562112809",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.452554562112809",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.5402970332392716",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.5402970332392716",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.5402970332392716",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.5402970332392716",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.797780634883302",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.797780634883302",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.797780634883302",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.797780634883302",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.212315638614096",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.212315638614096",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.212315638614096",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Idaho",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.212315638614096",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Idaho has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "3.6410218972279456",
- "national_value": "1.685820402830163",
- "region_value": "1.5432430534896904",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "2.1729189695617364",
- "national_value": "1.6826083301683215",
- "region_value": "2.227721558683385",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "2.3228042227570014",
- "national_value": "2.124626705610647",
- "region_value": "2.6772574795689947",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "1.9935293010776594",
- "national_value": "2.6837021559305736",
- "region_value": "2.2459750305475423",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "1.395875109181094",
- "national_value": "1.6847888502204156",
- "region_value": "2.0098682272334982",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "4.175582518655041",
- "national_value": "1.7342704780502864",
- "region_value": "3.9445583194788516",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "3.868590366049636",
- "national_value": "2.5176843149970507",
- "region_value": "4.777028045244008",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "6.4423142277891765",
- "national_value": "3.3062068257654307",
- "region_value": "5.579833052034854",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "7.414972264459385",
- "national_value": "3.0259000068656716",
- "region_value": "4.855866526400565",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "9.02085586567783",
- "national_value": "3.5656963666126624",
- "region_value": "4.350497036950614",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "10.375383711471724",
- "national_value": "5.571054487750484",
- "region_value": "4.675875457493486",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "13.353805687853141",
- "national_value": "5.815815969221436",
- "region_value": "4.162465176566722",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "13.344046164052685",
- "national_value": "7.972715209443255",
- "region_value": "6.9378556039273525",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "15.28189598461597",
- "national_value": "8.36714533097982",
- "region_value": "8.643754406068942",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "12.254050759657343",
- "national_value": "10.662626695924502",
- "region_value": "11.607854304844885",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "14.814678538037779",
- "national_value": "11.980909201182696",
- "region_value": "9.078836860825643",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "14.887112641005599",
- "national_value": "10.608123300225985",
- "region_value": "10.694056423978786",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "10.072500222987365",
- "national_value": "13.542811094208",
- "region_value": "14.554436713539129",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "12.75600865695997",
- "national_value": "12.719191415297415",
- "region_value": "11.297450165477272",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "9.507474588663221",
- "national_value": "11.717398915456236",
- "region_value": "11.765557982649376",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "8.419076444500671",
- "national_value": "10.378844194454414",
- "region_value": "9.116557459382598",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "8.799715733325954",
- "national_value": "9.58426311998286",
- "region_value": "7.991110424469195",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "6.3958820634466145",
- "national_value": "8.511935476968219",
- "region_value": "7.2303216345927765",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "9.874799075896679",
- "national_value": "7.91219972730154",
- "region_value": "7.050007413346095",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "6.305623316698634",
- "national_value": "6.4040522465371374",
- "region_value": "6.19725477545637",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "4.719745368244226",
- "national_value": "5.57261799627081",
- "region_value": "4.372879702551992",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "4.466924272002386",
- "national_value": "4.596671451155856",
- "region_value": "3.9095219051905423",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "3.828741567629871",
- "national_value": "4.534471689248122",
- "region_value": "4.111982935954425",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "4.617164568044097",
- "national_value": "4.778019873646184",
- "region_value": "4.597628916845259",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "2.016776327168876",
- "national_value": "3.940062397453282",
- "region_value": "3.3651022690130112",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "3.240873338749251",
- "national_value": "3.366182006584707",
- "region_value": "3.4066910020440555",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "2.8810615115806715",
- "national_value": "2.984187025846241",
- "region_value": "3.017709697257796",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.8975743257265127",
- "national_value": "2.463264084926519",
- "region_value": "2.125723447890337",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.8212701947522523",
- "national_value": "2.0734171252350273",
- "region_value": "1.9785801638602805",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.3044508863559843",
- "national_value": "2.1706895617031954",
- "region_value": "2.2462331446880675",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.478746802985844",
- "national_value": "2.029612060659673",
- "region_value": "2.174489550720086",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.692684497726386",
- "national_value": "1.7212315200834434",
- "region_value": "1.663009891818219",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.7596046217920227",
- "national_value": "1.4639104218258483",
- "region_value": "1.6729364399579305",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.4710243879531026",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.451469346115557",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.6154613488129748",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.4591020323608914",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.3347961024998192",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.1459445479145507",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.8687327135811356",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.1827045811742631",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.138397910404011",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.221936271737579",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.3336973416786888",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.4075594517635386",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.1825263513776085",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.1223982503236574",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.1204174053823488",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.3801601659017744",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.4565269883231733",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.4261412579472457",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.230110304649605",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.230110304649605",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.1634477503201284",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.1634477503201284",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.2171241353639062",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.2171241353639062",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.2975106691226757",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.2975106691226757",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.2960354114845996",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.2960354114845996",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.2870551541249835",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.2870551541249835",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.401369873846886",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.401369873846886",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.6744110610246818",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.6744110610246818",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.0807609879018023",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.0807609879018023",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.2341151221690563",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.2341151221690563",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.9342500709151675",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.9342500709151675",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "7.879292633828868",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "7.879292633828868",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "10.23498235722464",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "10.23498235722464",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "16.81178224061104",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "16.81178224061104",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.445424555890918",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.445424555890918",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "10.92549178591392",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "10.92549178591392",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "7.970428878656098",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "7.970428878656098",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "11.025682917512137",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "11.025682917512137",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Illinois",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "17.47831394260214",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "17.47831394260214",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "13.099321152660078",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "13.099321152660078",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Illinois",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "7.958865001123286",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "7.958865001123286",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "7.0547657608459495",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "7.0547657608459495",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "5.773925930636258",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "5.773925930636258",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "5.848872922610157",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "5.848872922610157",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "5.154138711757073",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "5.154138711757073",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "5.081518344867741",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "5.081518344867741",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "4.569685719886534",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "4.569685719886534",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Illinois",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "3.8774922559199636",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "3.8774922559199636",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "3.8774922559199636",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "3.7629707663892322",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "3.7629707663892322",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "3.7629707663892322",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.755143330638595",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.755143330638595",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.755143330638595",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "3.457048538222226",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "3.457048538222226",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "3.457048538222226",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "2.970580270594853",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "2.970580270594853",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "2.970580270594853",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.8419913367976872",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.8419913367976872",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.8419913367976872",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.7496573654614203",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.7496573654614203",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.7496573654614203",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.6985699268396606",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.6985699268396606",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.6985699268396606",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.2882831747709953",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.2882831747709953",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.2882831747709953",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "2.0151162435496883",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "2.0151162435496883",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "2.0151162435496883",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.8280407792677718",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.8280407792677718",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.8280407792677718",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.4063162472367723",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.4063162472367723",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.4063162472367723",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.642335408592897",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.642335408592897",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.642335408592897",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.5714435503192314",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.5714435503192314",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.5714435503192314",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.288777234125624",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.288777234125624",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.288777234125624",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.1388279658653313",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.1388279658653313",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.1388279658653313",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.513452123955375",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.513452123955375",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.513452123955375",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.2428827937911509",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.2428827937911509",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.2428827937911509",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.528598100303005",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.528598100303005",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.528598100303005",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "2.43594886392152",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "2.43594886392152",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "2.43594886392152",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "2.43594886392152",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.4925767540577368",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.4925767540577368",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.4925767540577368",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.4925767540577368",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.5004842217210175",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.5004842217210175",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.5004842217210175",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.5004842217210175",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.2890610750908311",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.2890610750908311",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.2890610750908311",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.2890610750908311",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.1573027734505374",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.1573027734505374",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.1573027734505374",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.1573027734505374",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.2050438250235",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.2050438250235",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.2050438250235",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.2050438250235",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.1533622465433278",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.1533622465433278",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.1533622465433278",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Illinois",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.1533622465433278",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Illinois has 71 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "2.689017540598576",
- "national_value": "2.124626705610647",
- "region_value": "2.6772574795689947",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "2.2459750305475423",
- "national_value": "2.6837021559305736",
- "region_value": "2.2459750305475423",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "1.8569504565973256",
- "national_value": "1.6847888502204156",
- "region_value": "2.0098682272334982",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "2.674584269694395",
- "national_value": "1.7342704780502864",
- "region_value": "3.9445583194788516",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "4.229439411593276",
- "national_value": "2.5176843149970507",
- "region_value": "4.777028045244008",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "8.778822902015424",
- "national_value": "3.3062068257654307",
- "region_value": "5.579833052034854",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "7.63540223008696",
- "national_value": "3.0259000068656716",
- "region_value": "4.855866526400565",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "7.431916273832016",
- "national_value": "3.5656963666126624",
- "region_value": "4.350497036950614",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "9.36113045052451",
- "national_value": "5.571054487750484",
- "region_value": "4.675875457493486",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "10.893624082796443",
- "national_value": "5.815815969221436",
- "region_value": "4.162465176566722",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "9.291636580081029",
- "national_value": "7.972715209443255",
- "region_value": "6.9378556039273525",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "9.840915304519719",
- "national_value": "8.36714533097982",
- "region_value": "8.643754406068942",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "14.135368366504826",
- "national_value": "10.662626695924502",
- "region_value": "11.607854304844885",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "10.006346963528241",
- "national_value": "11.980909201182696",
- "region_value": "9.078836860825643",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "11.484192227252805",
- "national_value": "10.608123300225985",
- "region_value": "10.694056423978786",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "11.388188703148316",
- "national_value": "13.542811094208",
- "region_value": "14.554436713539129",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "10.014466573303615",
- "national_value": "12.719191415297415",
- "region_value": "11.297450165477272",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "10.021161672128368",
- "national_value": "11.717398915456236",
- "region_value": "11.765557982649376",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "8.272313464792537",
- "national_value": "10.378844194454414",
- "region_value": "9.116557459382598",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "9.072022180818207",
- "national_value": "9.58426311998286",
- "region_value": "7.991110424469195",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "7.339201557149991",
- "national_value": "8.511935476968219",
- "region_value": "7.2303216345927765",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "7.050007413346095",
- "national_value": "7.91219972730154",
- "region_value": "7.050007413346095",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "6.112529364955861",
- "national_value": "6.4040522465371374",
- "region_value": "6.19725477545637",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "7.5439184979097655",
- "national_value": "5.57261799627081",
- "region_value": "4.372879702551992",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "7.187279114434479",
- "national_value": "4.596671451155856",
- "region_value": "3.9095219051905423",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "6.297381618084618",
- "national_value": "4.534471689248122",
- "region_value": "4.111982935954425",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "6.346916333886091",
- "national_value": "4.778019873646184",
- "region_value": "4.597628916845259",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "5.0608219798640395",
- "national_value": "3.940062397453282",
- "region_value": "3.3651022690130112",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "3.925195328723543",
- "national_value": "3.366182006584707",
- "region_value": "3.4066910020440555",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "5.133727618285889",
- "national_value": "2.984187025846241",
- "region_value": "3.017709697257796",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "4.197852695341167",
- "national_value": "2.463264084926519",
- "region_value": "2.125723447890337",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.2207767082471155",
- "national_value": "2.0734171252350273",
- "region_value": "1.9785801638602805",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.8978072136300788",
- "national_value": "2.1706895617031954",
- "region_value": "2.2462331446880675",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.0303929558373888",
- "national_value": "2.029612060659673",
- "region_value": "2.174489550720086",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.8824749754818733",
- "national_value": "1.7212315200834434",
- "region_value": "1.663009891818219",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.621229845609637",
- "national_value": "1.4639104218258483",
- "region_value": "1.6729364399579305",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.5233749390171387",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "0.9945454277991299",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.1973824296048072",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.3107962318992221",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.3757159403094235",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.1206335322676504",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.1741784043404786",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.0732346323903112",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.483734296731921",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.3325653261202315",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.0848233633562747",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.509184204659136",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.269987498989958",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.3032746571920695",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.3454715931800083",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.5544449442830963",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.4136751574069797",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.6718454523295012",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.4060339202038072",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.4060339202038072",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.362780449887743",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.362780449887743",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.7881259666858818",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.7881259666858818",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.246828657072459",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.246828657072459",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.948331995503852",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.948331995503852",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "3.1056063899669932",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "3.1056063899669932",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "2.924493288018155",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "2.924493288018155",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "3.249137810877995",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "3.249137810877995",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "6.501012133625694",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "6.501012133625694",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "5.136232391193697",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "5.136232391193697",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "8.151997490257381",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "8.151997490257381",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "10.619522306633042",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "10.619522306633042",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "14.793442959386175",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "14.793442959386175",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "16.073773965222017",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "16.073773965222017",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "17.15528869304083",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "17.15528869304083",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "11.968510932536441",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "11.968510932536441",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "15.405318502644315",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "15.405318502644315",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "18.592684137671228",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "18.592684137671228",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "18.201393531997272",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "18.201393531997272",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "12.719852120578857",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "12.719852120578857",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "13.214537155701251",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "13.214537155701251",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "12.054290184514349",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "12.054290184514349",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Indiana",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "9.767098229781496",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "9.767098229781496",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "8.441334270085525",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "8.441334270085525",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "8.284160671452039",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "8.284160671452039",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Indiana",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "7.657892920390025",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "7.657892920390025",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "6.4387993271967225",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "6.4387993271967225",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "4.473299391816478",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "4.473299391816478",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "4.473299391816478",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "5.4445548299259805",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "5.4445548299259805",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "5.4445548299259805",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Indiana",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.9075606459394194",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.9075606459394194",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.9075606459394194",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "3.0373202340923355",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "3.0373202340923355",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "3.0373202340923355",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "2.7234234479089756",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "2.7234234479089756",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "2.7234234479089756",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.0440770309671894",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.0440770309671894",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.0440770309671894",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.4902185907022147",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.4902185907022147",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.4902185907022147",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.3799076415664093",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.3799076415664093",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.3799076415664093",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.1139557130625914",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.1139557130625914",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.1139557130625914",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.596794176747866",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.596794176747866",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.596794176747866",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.5485561107451964",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.5485561107451964",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.5485561107451964",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.6437453691774337",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.6437453691774337",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.6437453691774337",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.5399615501019233",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.5399615501019233",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.5399615501019233",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.4418968566631571",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.4418968566631571",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.4418968566631571",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.4659632149886452",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.4659632149886452",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.4659632149886452",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.422471540915577",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.422471540915577",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.422471540915577",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.5274463335470108",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.5274463335470108",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.5274463335470108",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.3967279540374982",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.3967279540374982",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.3967279540374982",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.399707848390833",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.399707848390833",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.399707848390833",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.4700637903996119",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.4700637903996119",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.4700637903996119",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.4700637903996119",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.4009905976635693",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.4009905976635693",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.4009905976635693",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.4009905976635693",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.338856291758696",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.338856291758696",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.338856291758696",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.338856291758696",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.322310278534137",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.322310278534137",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.322310278534137",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.322310278534137",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.4676037922465646",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.4676037922465646",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.4676037922465646",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.4676037922465646",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.5295024979415797",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.5295024979415797",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.5295024979415797",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.5295024979415797",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.7009514303004598",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.7009514303004598",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.7009514303004598",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Indiana",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.7009514303004598",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Indiana has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "17.798401626656087",
- "national_value": "11.717398915456236",
- "region_value": "11.765557982649376",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "24.406457147350416",
- "national_value": "10.378844194454414",
- "region_value": "9.116557459382598",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Iowa",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "21.113928829928284",
- "national_value": "9.58426311998286",
- "region_value": "7.991110424469195",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Iowa",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "17.4797740400889",
- "national_value": "8.511935476968219",
- "region_value": "7.2303216345927765",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "10.836031084825901",
- "national_value": "7.91219972730154",
- "region_value": "7.050007413346095",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "11.98939525843371",
- "national_value": "6.4040522465371374",
- "region_value": "6.19725477545637",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "8.44075990091885",
- "national_value": "5.57261799627081",
- "region_value": "4.372879702551992",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "6.281142739879613",
- "national_value": "4.596671451155856",
- "region_value": "3.9095219051905423",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "4.111982935954425",
- "national_value": "4.534471689248122",
- "region_value": "4.111982935954425",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "7.594297815252972",
- "national_value": "4.778019873646184",
- "region_value": "4.597628916845259",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "9.864084761872443",
- "national_value": "3.940062397453282",
- "region_value": "3.3651022690130112",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "4.636026731080231",
- "national_value": "3.366182006584707",
- "region_value": "3.4066910020440555",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "2.8858266323987145",
- "national_value": "2.984187025846241",
- "region_value": "3.017709697257796",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "2.493521776185131",
- "national_value": "2.463264084926519",
- "region_value": "2.125723447890337",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.8595951607672747",
- "national_value": "2.0734171252350273",
- "region_value": "1.9785801638602805",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.572006609796146",
- "national_value": "2.1706895617031954",
- "region_value": "2.2462331446880675",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.3012734273762747",
- "national_value": "2.029612060659673",
- "region_value": "2.174489550720086",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.191209879521822",
- "national_value": "1.7212315200834434",
- "region_value": "1.663009891818219",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.748280957234665",
- "national_value": "1.4639104218258483",
- "region_value": "1.6729364399579305",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.3870213531168094",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.4861199753277756",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.3927961100683177",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.4931506303736108",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.6492415831179852",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.2550783476584217",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "2.539571785632021",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.2268835812157521",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.8527538623906274",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.5967196973899414",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.4547714522044057",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "2.2285117667742007",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.668368100717749",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.7249134282110514",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.4061947660818668",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.36606134964635",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.4603341095845976",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "2.956981301796184",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.5518297224800175",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.5518297224800175",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.8378072750626593",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.8378072750626593",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.6812732312959526",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.6812732312959526",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.8989103899494553",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.8989103899494553",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "3.2855849967701842",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "3.2855849967701842",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "5.263331169666127",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "5.263331169666127",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "4.084307133797953",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "4.084307133797953",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "3.426985413045356",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "3.426985413045356",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "3.8225380508134617",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "3.8225380508134617",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.5775511114076894",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.5775511114076894",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "5.102181449886284",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "5.102181449886284",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "2.2227797020898534",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "2.2227797020898534",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "5.116512907384141",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "5.116512907384141",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "11.45762566134566",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "11.45762566134566",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.908435332082083",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.908435332082083",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "8.351824756957122",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "8.351824756957122",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "9.4874182267289",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "9.4874182267289",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "12.72991798004637",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "12.72991798004637",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "12.36517193576338",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "12.36517193576338",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "12.082847490546676",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "12.082847490546676",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "6.581605078776538",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "6.581605078776538",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "7.17020581481683",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "7.17020581481683",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "8.258305931455462",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "8.258305931455462",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Iowa",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "6.61682522269016",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "6.61682522269016",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "13.076113967365771",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "13.076113967365771",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Iowa",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "5.2203499689144905",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "5.2203499689144905",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "7.746917038952188",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "7.746917038952188",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "4.623672839591089",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "4.623672839591089",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "4.623672839591089",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "6.55871398410892",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "6.55871398410892",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "6.55871398410892",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.3390452650551863",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.3390452650551863",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.3390452650551863",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "5.357723632127916",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "5.357723632127916",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "5.357723632127916",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "5.003861750768117",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "5.003861750768117",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "5.003861750768117",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "4.293473539777318",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "4.293473539777318",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "4.293473539777318",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Iowa",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "2.841245980023166",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "2.841245980023166",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "2.841245980023166",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.7564726286359573",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.7564726286359573",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.7564726286359573",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.622866452436573",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.622866452436573",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.622866452436573",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.668330974229485",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.668330974229485",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.668330974229485",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.7704521210598887",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.7704521210598887",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.7704521210598887",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.483074853084154",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.483074853084154",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.483074853084154",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.346572830876795",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.346572830876795",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.346572830876795",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.6273699097000496",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.6273699097000496",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.6273699097000496",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.2417427797727456",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.2417427797727456",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.2417427797727456",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.5402855894901573",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.5402855894901573",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.5402855894901573",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.5668788464065821",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.5668788464065821",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.5668788464065821",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.2991121134717616",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.2991121134717616",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.2991121134717616",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.1875855801203916",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.1875855801203916",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.1875855801203916",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.1875855801203916",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.4981150906562875",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.4981150906562875",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.4981150906562875",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.4981150906562875",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.3583218166684334",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.3583218166684334",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.3583218166684334",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.3583218166684334",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.4568262245818466",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.4568262245818466",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.4568262245818466",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.4568262245818466",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.5054536786171042",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.5054536786171042",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.5054536786171042",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.5054536786171042",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.5730100772755133",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.5730100772755133",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.5730100772755133",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.5730100772755133",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.273800141176281",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.273800141176281",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.273800141176281",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Iowa",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.273800141176281",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Iowa has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "2.6156995677875035",
- "national_value": "1.685820402830163",
- "region_value": "1.5432430534896904",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "2.8492529199164878",
- "national_value": "1.6826083301683215",
- "region_value": "2.227721558683385",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "3.3790556281450854",
- "national_value": "2.124626705610647",
- "region_value": "2.6772574795689947",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "3.6759829086810196",
- "national_value": "2.6837021559305736",
- "region_value": "2.2459750305475423",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "3.4213887979482527",
- "national_value": "1.6847888502204156",
- "region_value": "2.0098682272334982",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "4.939753530024106",
- "national_value": "1.7342704780502864",
- "region_value": "3.9445583194788516",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "3.346256463013739",
- "national_value": "2.5176843149970507",
- "region_value": "4.777028045244008",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "4.547499828107246",
- "national_value": "3.3062068257654307",
- "region_value": "5.579833052034854",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "3.406626126460862",
- "national_value": "3.0259000068656716",
- "region_value": "4.855866526400565",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "4.28606439373925",
- "national_value": "3.5656963666126624",
- "region_value": "4.350497036950614",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "6.288565485918781",
- "national_value": "5.571054487750484",
- "region_value": "4.675875457493486",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "12.330002128136755",
- "national_value": "5.815815969221436",
- "region_value": "4.162465176566722",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "12.027908030831926",
- "national_value": "7.972715209443255",
- "region_value": "6.9378556039273525",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "12.723744587092845",
- "national_value": "8.36714533097982",
- "region_value": "8.643754406068942",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "11.51385400209913",
- "national_value": "10.662626695924502",
- "region_value": "11.607854304844885",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "14.878829775095472",
- "national_value": "11.980909201182696",
- "region_value": "9.078836860825643",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "12.734131585413978",
- "national_value": "10.608123300225985",
- "region_value": "10.694056423978786",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "21.41450085093205",
- "national_value": "13.542811094208",
- "region_value": "14.554436713539129",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Kansas",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "17.0594637522397",
- "national_value": "12.719191415297415",
- "region_value": "11.297450165477272",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "15.99753818093401",
- "national_value": "11.717398915456236",
- "region_value": "11.765557982649376",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "16.05725038433085",
- "national_value": "10.378844194454414",
- "region_value": "9.116557459382598",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "15.39921981170277",
- "national_value": "9.58426311998286",
- "region_value": "7.991110424469195",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "13.250134792743694",
- "national_value": "8.511935476968219",
- "region_value": "7.2303216345927765",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "8.417969055288799",
- "national_value": "7.91219972730154",
- "region_value": "7.050007413346095",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "9.20134921510325",
- "national_value": "6.4040522465371374",
- "region_value": "6.19725477545637",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "5.104061417169497",
- "national_value": "5.57261799627081",
- "region_value": "4.372879702551992",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "3.9095219051905423",
- "national_value": "4.596671451155856",
- "region_value": "3.9095219051905423",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "4.866713095140298",
- "national_value": "4.534471689248122",
- "region_value": "4.111982935954425",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "5.183544488461476",
- "national_value": "4.778019873646184",
- "region_value": "4.597628916845259",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "1.8397909304461246",
- "national_value": "3.940062397453282",
- "region_value": "3.3651022690130112",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "3.366182006584707",
- "national_value": "3.366182006584707",
- "region_value": "3.4066910020440555",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.7294461958994787",
- "national_value": "2.984187025846241",
- "region_value": "3.017709697257796",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.8390954571043243",
- "national_value": "2.463264084926519",
- "region_value": "2.125723447890337",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "4.308336085150414",
- "national_value": "2.0734171252350273",
- "region_value": "1.9785801638602805",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.168222615862083",
- "national_value": "2.1706895617031954",
- "region_value": "2.2462331446880675",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "3.8079524735534647",
- "national_value": "2.029612060659673",
- "region_value": "2.174489550720086",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.5631958014179466",
- "national_value": "1.7212315200834434",
- "region_value": "1.663009891818219",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.6270478323179",
- "national_value": "1.4639104218258483",
- "region_value": "1.6729364399579305",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.5388489465216477",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.8513923051982182",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.870774127598611",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.5257263349111512",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.6941816441844597",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.5113278221453095",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.392192706740122",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.6692987321255712",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.285060162323081",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.597067213125321",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.2827787424112482",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.3288147925768643",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.4455981585696975",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.4271802747114424",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.5756395842460265",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.3059807707540565",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.4448680102483067",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.7346910346649334",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.4392801996909586",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.4392801996909586",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.2003644780542961",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.2003644780542961",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.2639937392350673",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.2639937392350673",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.4028346884329528",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.4028346884329528",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.0598570645521495",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.0598570645521495",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.608349982796513",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.608349982796513",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "0.9827190608929852",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "0.9827190608929852",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.1776751640156609",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.1776751640156609",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.3527920585403868",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.3527920585403868",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "4.887287558280211",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "4.887287558280211",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.2292393164188073",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.2292393164188073",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "4.1448922184766825",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "4.1448922184766825",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "4.614164302049006",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "4.614164302049006",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "9.572278531726791",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "9.572278531726791",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "9.624760517534913",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "9.624760517534913",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "11.098241335489712",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "11.098241335489712",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "14.171154908996826",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "14.171154908996826",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "14.189425450444055",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "14.189425450444055",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "16.64129329673505",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "16.64129329673505",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "12.683941107015762",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "12.683941107015762",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kansas",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "11.286379330290199",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "11.286379330290199",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "10.782514957383691",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "10.782514957383691",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "8.93991367497976",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "8.93991367497976",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "7.096676323295505",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "7.096676323295505",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "7.3195224998787225",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "7.3195224998787225",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "8.058485130199344",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "8.058485130199344",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "8.525447187479699",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "8.525447187479699",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kansas",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "5.782410086534248",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "5.782410086534248",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "5.782410086534248",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "4.698939863538578",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "4.698939863538578",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "4.698939863538578",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kansas",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.0900516711975632",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.0900516711975632",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.0900516711975632",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "2.448237895849873",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "2.448237895849873",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "2.448237895849873",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.6763973418967786",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.6763973418967786",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.6763973418967786",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.6842834555770798",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.6842834555770798",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.6842834555770798",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.1678375319619967",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.1678375319619967",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.1678375319619967",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.6577625641337526",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.6577625641337526",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.6577625641337526",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.699621544711138",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.699621544711138",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.699621544711138",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.5349779603303477",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.5349779603303477",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.5349779603303477",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.2358745692172168",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.2358745692172168",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.2358745692172168",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0889395067269394",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0889395067269394",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0889395067269394",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.1400786167442474",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.1400786167442474",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.1400786167442474",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.1509003334201322",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.1509003334201322",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.1509003334201322",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.3600166338587503",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.3600166338587503",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.3600166338587503",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.3253710309102458",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.3253710309102458",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.3253710309102458",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.3164259472086457",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.3164259472086457",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.3164259472086457",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.378071296131118",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.378071296131118",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.378071296131118",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.367333910128736",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.367333910128736",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.367333910128736",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.2808461361489014",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.2808461361489014",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.2808461361489014",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.2808461361489014",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.1502861722060187",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.1502861722060187",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.1502861722060187",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.1502861722060187",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.078759964493893",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.078759964493893",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.078759964493893",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.078759964493893",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.121213925685665",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.121213925685665",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.121213925685665",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.121213925685665",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.185477393885546",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.185477393885546",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.185477393885546",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.185477393885546",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0528772725719948",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0528772725719948",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0528772725719948",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0528772725719948",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.762649320489918",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.762649320489918",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.762649320489918",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kansas",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.762649320489918",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Kansas has 13 site(s) reporting in the past week, and 1 (8%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-03-05",
- "date_period": "All Results",
- "value": "1.260410814064624",
- "national_value": "1.7475103377485617",
- "region_value": "1.3549409284028244",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-03-12",
- "date_period": "All Results",
- "value": "1.4165577100063698",
- "national_value": "2.675693408084616",
- "region_value": "1.4165577100063698",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-03-19",
- "date_period": "All Results",
- "value": "1.130758149904982",
- "national_value": "1.5474885923274455",
- "region_value": "1.130758149904982",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-03-26",
- "date_period": "All Results",
- "value": "1.2134117196313432",
- "national_value": "2.055720070472593",
- "region_value": "3.9231075659694787",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-04-02",
- "date_period": "All Results",
- "value": "0.7389481889504014",
- "national_value": "1.6885380112940913",
- "region_value": "1.6414683260623795",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-04-09",
- "date_period": "All Results",
- "value": "1.2956892260371637",
- "national_value": "2.1742838341071806",
- "region_value": "1.5925606306818119",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-04-16",
- "date_period": "All Results",
- "value": "3.5071123037264362",
- "national_value": "1.8413286484545477",
- "region_value": "1.4074239331940275",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-04-23",
- "date_period": "All Results",
- "value": "0.9070340540366149",
- "national_value": "1.3483509328559706",
- "region_value": "1.2038815581467808",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-04-30",
- "date_period": "All Results",
- "value": "0.7684964511941634",
- "national_value": "1.4914472684711386",
- "region_value": "1.248256862066513",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-05-07",
- "date_period": "All Results",
- "value": "5.773291457960859",
- "national_value": "1.4054487457710798",
- "region_value": "2.213774693617851",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2022-05-14",
- "date_period": "All Results",
- "value": "0.9933190174412742",
- "national_value": "1.603770824840521",
- "region_value": "2.6272930987891",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-05-21",
- "date_period": "All Results",
- "value": "1.0461047954280454",
- "national_value": "1.6151331114041896",
- "region_value": "1.7238064838436258",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": "1.1157484903430221",
- "national_value": "1.6598224284451173",
- "region_value": "2.233637756012857",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": "1.408348613319625",
- "national_value": "1.4734515288198426",
- "region_value": "2.1810797861808116",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": "4.556641446380473",
- "national_value": "1.9124324956062713",
- "region_value": "4.706036033028935",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": "1.2893466117763412",
- "national_value": "1.3900747712132921",
- "region_value": "2.847876725408067",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": "1.1148255172164876",
- "national_value": "1.3310194816554493",
- "region_value": "2.4130779974770347",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "0.5556921044891194",
- "national_value": "1.797445827207103",
- "region_value": "3.1136751685133754",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "0.9709406172301167",
- "national_value": "2.265982888946997",
- "region_value": "4.493855058327775",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "2.6303720772838717",
- "national_value": "2.6512503036239994",
- "region_value": "7.101660345481074",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "1.2323626510284167",
- "national_value": "2.2782237042639117",
- "region_value": "4.569047247433098",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": "1.2465348186434673",
- "national_value": "1.8043202465812183",
- "region_value": "4.127281893119541",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "1.196353518436297",
- "national_value": "1.685820402830163",
- "region_value": "4.137109462906029",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "1.1894531422142598",
- "national_value": "1.6826083301683215",
- "region_value": "2.845086277129335",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "1.0727526437103263",
- "national_value": "2.124626705610647",
- "region_value": "5.299499119809991",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "2.6663070187225926",
- "national_value": "2.6837021559305736",
- "region_value": "5.886541834333909",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "1.0894421545061534",
- "national_value": "1.6847888502204156",
- "region_value": "5.253371358392005",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "0.9736811104657476",
- "national_value": "1.7342704780502864",
- "region_value": "3.943501391247169",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "2.864927129029928",
- "national_value": "2.5176843149970507",
- "region_value": "4.342884914848835",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "3.7338511468292435",
- "national_value": "3.3062068257654307",
- "region_value": "3.494108303925306",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "6.837606000426805",
- "national_value": "3.0259000068656716",
- "region_value": "6.177373547483146",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "3.5656963666126624",
- "national_value": "3.5656963666126624",
- "region_value": "4.9652604206011715",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "6.714630653537769",
- "national_value": "5.571054487750484",
- "region_value": "4.512398753521249",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "7.419875904291027",
- "national_value": "5.815815969221436",
- "region_value": "6.483962575074571",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "7.117347157143181",
- "national_value": "7.972715209443255",
- "region_value": "6.786697541831071",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "5.210183392838463",
- "national_value": "8.36714533097982",
- "region_value": "7.870550389438764",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "13.466988905069677",
- "national_value": "10.662626695924502",
- "region_value": "7.293131701028378",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "14.399085505363429",
- "national_value": "11.980909201182696",
- "region_value": "8.453843241798953",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "9.061525034518873",
- "national_value": "10.608123300225985",
- "region_value": "10.353181175763877",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "12.024854763558018",
- "national_value": "13.542811094208",
- "region_value": "7.937538761584929",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "11.551095567893265",
- "national_value": "12.719191415297415",
- "region_value": "11.319823345006384",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "6.675667655383791",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "9.848601220502324",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": null,
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Kentucky",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "2.41781927112226",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "5.711269839940668",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "5.220413544485194",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "5.125419737754352",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": null,
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Kentucky",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "5.688353457407307",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "2.6456875062099585",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "1.0370864554075527",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "1.164578430229071",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.184497312511655",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.144225406907024",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.2785633268437666",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "0.9131150797664642",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "3.31307767893758",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "0.9809630391579623",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.0443485447027154",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.0078883769490474",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.0822986914250452",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "0.818635273557513",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "0.9888134589513524",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "9.85390087622231",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Kentucky",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.2878184346602666",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.975204772898958",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.5853423379359477",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "0.8606608013811862",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.0733626367791604",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.333505079858602",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.7560552831893586",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.53929576081736",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.2270298464691174",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "2.130724771192156",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.6110337005516389",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "0.9588294234668022",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "3.254491979660499",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "3.254491979660499",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.5257079604965553",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.5257079604965553",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.508401902471526",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.508401902471526",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.7591589339636542",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.7591589339636542",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "2.68413760330283",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "2.68413760330283",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "2.07681317369074",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "2.07681317369074",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.3994535297587682",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.3994535297587682",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.248460880520339",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.248460880520339",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.469904821101268",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.469904821101268",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "2.22590511845725",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "2.22590511845725",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "6.87267672261238",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "6.87267672261238",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "4.754982322279899",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "4.754982322279899",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "5.501754393789569",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "5.501754393789569",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "11.115951840238289",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "11.115951840238289",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "16.24705298245503",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "16.24705298245503",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "18.084430759077744",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "18.084430759077744",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "16.811310853774412",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "16.811310853774412",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "20.362473753604917",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Kentucky",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "20.362473753604917",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Kentucky",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "11.401331914246478",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "11.401331914246478",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "10.669668504454407",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "10.669668504454407",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "10.866551002215402",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "10.866551002215402",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "10.154804140995765",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "10.154804140995765",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "15.082174562511126",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "15.082174562511126",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Kentucky",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "6.200216571846462",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "6.200216571846462",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "9.01575439366998",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "9.01575439366998",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "5.116682080412725",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "5.116682080412725",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "8.580398995244801",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "8.580398995244801",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "8.580398995244801",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "4.469268790703243",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "4.469268790703243",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "4.469268790703243",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.9312175602245407",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.9312175602245407",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.9312175602245407",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "5.020032158129047",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "5.020032158129047",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "5.020032158129047",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.482049323436662",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.482049323436662",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.482049323436662",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.696708254265036",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.696708254265036",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.696708254265036",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.8487827909742258",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.8487827909742258",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.8487827909742258",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.574566801728708",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.574566801728708",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.574566801728708",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0815064538916541",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0815064538916541",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0815064538916541",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0264088396998066",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0264088396998066",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0264088396998066",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.2313842801472372",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.2313842801472372",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.2313842801472372",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.2353694353804883",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.2353694353804883",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.2353694353804883",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "0.9231189493318085",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "0.9231189493318085",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "0.9231189493318085",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "0.6982039857557729",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "0.6982039857557729",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "0.6982039857557729",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.287905879660964",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.287905879660964",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.287905879660964",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.5071282826870904",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.5071282826870904",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.5071282826870904",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "2.141532584033718",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "2.141532584033718",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "2.141532584033718",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.285572664686696",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.285572664686696",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.285572664686696",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.1861899936591418",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.1861899936591418",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.1861899936591418",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.4534768239654385",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.4534768239654385",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.4534768239654385",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.4534768239654385",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.7261323216430364",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.7261323216430364",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.7261323216430364",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.7261323216430364",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "3.249456260885818",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "3.249456260885818",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "3.249456260885818",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "3.249456260885818",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "6.27559876460502",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "6.27559876460502",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "6.27559876460502",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "6.27559876460502",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.6163521161167294",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.6163521161167294",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.6163521161167294",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.6163521161167294",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "3.931213422040352",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "3.931213422040352",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "3.931213422040352",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "3.931213422040352",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.5218806989947908",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.5218806989947908",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.5218806989947908",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Kentucky",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.5218806989947908",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Kentucky has 4 site(s) reporting in the past week, and 3 (75%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "20.05487740079262",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "20.05487740079262",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "13.32472464007916",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "13.32472464007916",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "20.730103013018386",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "20.730103013018386",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "17.06643903634387",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "17.06643903634387",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "13.951060850999665",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Louisiana",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "13.951060850999665",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Louisiana",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "9.296661378510015",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Louisiana",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "9.296661378510015",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Louisiana",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "10.040371902212295",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Louisiana",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "10.040371902212295",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Louisiana",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "7.222928033669531",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "7.222928033669531",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "6.451457581433969",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "6.451457581433969",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "5.6807328559326375",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "5.6807328559326375",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "2.740412582141667",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "2.740412582141667",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.9975124915809823",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.9975124915809823",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "4.014645898412793",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "4.014645898412793",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "4.014645898412793",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.2130286827329932",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.2130286827329932",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.2130286827329932",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "2.6363665888428502",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "2.6363665888428502",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "2.6363665888428502",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.13661128312271",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.13661128312271",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.13661128312271",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.9950115125345074",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.9950115125345074",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.9950115125345074",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Louisiana",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Louisiana has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "4.2034775093322905",
- "national_value": "1.6847888502204156",
- "region_value": "2.534327592334763",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "2.6901440672047117",
- "national_value": "1.7342704780502864",
- "region_value": "4.314434774408644",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "2.3209286389498636",
- "national_value": "2.5176843149970507",
- "region_value": "2.3209286389498636",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "3.3206506835077385",
- "national_value": "3.3062068257654307",
- "region_value": "4.809098546192238",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "5.4345869608286",
- "national_value": "3.0259000068656716",
- "region_value": "5.132452963717157",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "5.340518945858676",
- "national_value": "3.5656963666126624",
- "region_value": "5.340518945858676",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "8.287580296694221",
- "national_value": "5.571054487750484",
- "region_value": "8.287580296694221",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "9.061164100681268",
- "national_value": "5.815815969221436",
- "region_value": "9.611905091332462",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "10.177177233123658",
- "national_value": "7.972715209443255",
- "region_value": "10.222280230779521",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "8.682322017658104",
- "national_value": "8.36714533097982",
- "region_value": "13.332623971930818",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "13.016355829286804",
- "national_value": "10.662626695924502",
- "region_value": "12.981677871885413",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "16.183431782340218",
- "national_value": "11.980909201182696",
- "region_value": "14.6586796823436",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": null,
- "national_value": "10.608123300225985",
- "region_value": "15.86594348238791",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Maine",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "16.326774874799103",
- "national_value": "13.542811094208",
- "region_value": "15.40699593926659",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "13.270926666692269",
- "national_value": "12.719191415297415",
- "region_value": "13.262620401834589",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "12.627795058755606",
- "national_value": "11.717398915456236",
- "region_value": "11.352594698189726",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "15.445686768300929",
- "national_value": "10.378844194454414",
- "region_value": "11.022895792731262",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "7.61662195137713",
- "national_value": "9.58426311998286",
- "region_value": "9.775431860636818",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "14.922345896597298",
- "national_value": "8.511935476968219",
- "region_value": "9.975037191136114",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "12.664825830617598",
- "national_value": "7.91219972730154",
- "region_value": "9.243805557172777",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "7.062536687718952",
- "national_value": "6.4040522465371374",
- "region_value": "5.484335628234252",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "5.802422501646377",
- "national_value": "5.57261799627081",
- "region_value": "5.802422501646377",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "3.7071932253913085",
- "national_value": "4.596671451155856",
- "region_value": "4.92677539730301",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "2.9107504913481264",
- "national_value": "4.534471689248122",
- "region_value": "3.9249168617913623",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "3.6706906530020555",
- "national_value": "4.778019873646184",
- "region_value": "4.723047307812709",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "2.220269316999023",
- "national_value": "3.940062397453282",
- "region_value": "3.9362062091661563",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "1.5591974397795352",
- "national_value": "3.366182006584707",
- "region_value": "3.195568317061261",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.0216671543988762",
- "national_value": "2.984187025846241",
- "region_value": "3.424697281051291",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "3.0582968115300453",
- "national_value": "2.463264084926519",
- "region_value": "3.320895783680351",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.101983807642505",
- "national_value": "2.0734171252350273",
- "region_value": "2.1329436549742566",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.684195238485401",
- "national_value": "2.1706895617031954",
- "region_value": "1.9790130601465161",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.030848860326291",
- "national_value": "2.029612060659673",
- "region_value": "1.7696449985793985",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.2917130631046139",
- "national_value": "1.7212315200834434",
- "region_value": "1.5359662525874158",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.2157192844081883",
- "national_value": "1.4639104218258483",
- "region_value": "1.2897113080281324",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.0894935565671258",
- "national_value": "1.3457689462373816",
- "region_value": "1.2042322642300383",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.2327937467466321",
- "national_value": "1.3444098672308302",
- "region_value": "1.2765690911726495",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.0735155484129228",
- "national_value": "1.4600144152295942",
- "region_value": "1.2412799008649893",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.480446714502445",
- "national_value": "1.4508980845678203",
- "region_value": "1.3338419322872777",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "2.5010239437144257",
- "national_value": "1.3757159403094235",
- "region_value": "1.332853355543047",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.240206981965934",
- "national_value": "1.2604448744176628",
- "region_value": "1.1731847577021368",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.3701023487033024",
- "national_value": "1.4989526753060833",
- "region_value": "1.2120785871951774",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.5536104627450331",
- "national_value": "1.3481042238716148",
- "region_value": "1.2017194573972125",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "2.096870909279711",
- "national_value": "1.3376078752006206",
- "region_value": "1.2074100210549727",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.4712061013279119",
- "national_value": "1.3572731286449182",
- "region_value": "1.5563930739522744",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.9996111839847888",
- "national_value": "1.360705677152615",
- "region_value": "1.4210541710154538",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.486628197539518",
- "national_value": "1.474803324474663",
- "region_value": "1.6299002734223211",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.6302789684844265",
- "national_value": "1.4944211195175625",
- "region_value": "1.5488721770349039",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.5588301606598556",
- "national_value": "1.3748941802394352",
- "region_value": "1.477304317799994",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.4564503661337105",
- "national_value": "1.3783354215594579",
- "region_value": "1.4590872128337622",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.3983397438903626",
- "national_value": "1.4558057901844157",
- "region_value": "1.4558057901844157",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.5610759316751053",
- "national_value": "1.5069809754963082",
- "region_value": "1.3463593879088378",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "5.140979847533617",
- "national_value": "1.6679622365286086",
- "region_value": "1.728070959325373",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.9438894422877893",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.9438894422877893",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.668063848112118",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.668063848112118",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.4668332248329112",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.4668332248329112",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.5426997251623218",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.5426997251623218",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.6800163623089752",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.6800163623089752",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.546290476444997",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.546290476444997",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.5697630893734402",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.5697630893734402",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.5328553415322104",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.5328553415322104",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.1328188103291",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.1328188103291",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.6249191760466832",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.6249191760466832",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "2.0002850639080436",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "2.0002850639080436",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "7.26363042250288",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "7.26363042250288",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "5.272440744278878",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "5.272440744278878",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "6.497113234026231",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "6.497113234026231",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "11.525274226294002",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "11.525274226294002",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "4.4646443354803065",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "4.4646443354803065",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "2.9529479108272354",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "2.9529479108272354",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "12.914486651439706",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "12.914486651439706",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "8.102139871104171",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "8.102139871104171",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "14.30451406852075",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "14.30451406852075",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maine",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "2.816125402202162",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "2.816125402202162",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "11.774127069776483",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "11.774127069776483",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "10.4778497275938",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "10.4778497275938",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "8.07722659632336",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "8.07722659632336",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "8.287034075819017",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "8.287034075819017",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maine",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "2.93590937142583",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "2.93590937142583",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "4.499412495293942",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "4.499412495293942",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maine",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "3.494819090195635",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "3.494819090195635",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "3.494819090195635",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.8169282561552087",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.8169282561552087",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.8169282561552087",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0280404725041374",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0280404725041374",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0280404725041374",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maine",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Maine has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "12.867605360422099",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "7.327663596694837",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "12.882863351569881",
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "6.672157595777909",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "4.345532151792069",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "3.8292963696409204",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "4.065010769339173",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "5.827149229025576",
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "5.17697714831642",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "6.07201231101841",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "5.025355837302251",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "3.586325080938294",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "1.7497141737080122",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "2.8174868025351953",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.679072063900078",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.4328395245454153",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.4402046328644733",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.9348572881868809",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.3367749511926645",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.882896941256647",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.2432504395666648",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.6830029415719672",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.641970590013218",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "3.0445174437513245",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.403149919202058",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.1771293997920136",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.2422904894455478",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.6378190690823362",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.5254551642110719",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.2181237403997678",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "2.8703827694514965",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "2.0502987723047106",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.0828182457943796",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.618341027825699",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "2.0574281687174727",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.620212377938877",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.769325384097162",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.713405936539072",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.713405936539072",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.8352026968757351",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.8352026968757351",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.2887562225756306",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.2887562225756306",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "3.236279208229341",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "3.236279208229341",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "4.404327930205882",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "4.404327930205882",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "5.266969000832663",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "5.266969000832663",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "8.773013474018024",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maryland",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "8.773013474018024",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maryland",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "4.840563846139254",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "4.840563846139254",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "7.347741939306079",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "7.347741939306079",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "8.370097591834822",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maryland",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "8.370097591834822",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maryland",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "11.918159574515343",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maryland",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "11.918159574515343",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maryland",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "14.970852317115474",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "14.970852317115474",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "14.334624285208118",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "14.334624285208118",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "13.655973501356323",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "13.655973501356323",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "26.233336463712877",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "26.233336463712877",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "14.922952300953071",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "14.922952300953071",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "16.13886248931333",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "16.13886248931333",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "14.352468807473414",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "14.352468807473414",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "17.740754986857016",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "17.740754986857016",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "12.404297754849193",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "12.404297754849193",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Maryland",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "8.91271114190776",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maryland",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "8.91271114190776",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Maryland",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "5.000899267470259",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "5.000899267470259",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "5.529404650175543",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "5.529404650175543",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "1.9051258393616486",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "1.9051258393616486",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "6.397332653737565",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "6.397332653737565",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Maryland",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "1.4285180218110238",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "1.4285180218110238",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "2.3167974922867858",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "2.3167974922867858",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "2.2531142266479076",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "2.2531142266479076",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "2.2531142266479076",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.075664704371209",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.075664704371209",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.075664704371209",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Maryland",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Maryland has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "9.554084355602393",
- "national_value": "11.717398915456236",
- "region_value": "11.352594698189726",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "7.995493723445449",
- "national_value": "10.378844194454414",
- "region_value": "11.022895792731262",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "8.611358427881926",
- "national_value": "9.58426311998286",
- "region_value": "9.775431860636818",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "4.837906637041924",
- "national_value": "8.511935476968219",
- "region_value": "9.975037191136114",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "8.817553338026535",
- "national_value": "7.91219972730154",
- "region_value": "9.243805557172777",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "4.96404674488021",
- "national_value": "6.4040522465371374",
- "region_value": "5.484335628234252",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "5.0116455526277415",
- "national_value": "5.57261799627081",
- "region_value": "5.802422501646377",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "7.599599844872412",
- "national_value": "4.596671451155856",
- "region_value": "4.92677539730301",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "6.005223404239035",
- "national_value": "4.534471689248122",
- "region_value": "3.9249168617913623",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "4.029430928840836",
- "national_value": "4.778019873646184",
- "region_value": "4.723047307812709",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "3.9362062091661563",
- "national_value": "3.940062397453282",
- "region_value": "3.9362062091661563",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.9046130762059943",
- "national_value": "3.366182006584707",
- "region_value": "3.195568317061261",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.122929755423558",
- "national_value": "2.984187025846241",
- "region_value": "3.424697281051291",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "5.07749287702719",
- "national_value": "2.463264084926519",
- "region_value": "3.320895783680351",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.0694948367811192",
- "national_value": "2.0734171252350273",
- "region_value": "2.1329436549742566",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.3923727177545562",
- "national_value": "2.1706895617031954",
- "region_value": "1.9790130601465161",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.4343927582283604",
- "national_value": "2.029612060659673",
- "region_value": "1.7696449985793985",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.0864787392062683",
- "national_value": "1.7212315200834434",
- "region_value": "1.5359662525874158",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.9886829837082773",
- "national_value": "1.4639104218258483",
- "region_value": "1.2897113080281324",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.3116659650829972",
- "national_value": "1.3457689462373816",
- "region_value": "1.2042322642300383",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.2300019535381201",
- "national_value": "1.3444098672308302",
- "region_value": "1.2765690911726495",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "2.164181940928827",
- "national_value": "1.4600144152295942",
- "region_value": "1.2412799008649893",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.2221939107669242",
- "national_value": "1.4508980845678203",
- "region_value": "1.3338419322872777",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.5427648404336343",
- "national_value": "1.3757159403094235",
- "region_value": "1.332853355543047",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.1731847577021368",
- "national_value": "1.2604448744176628",
- "region_value": "1.1731847577021368",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "2.4374549180054026",
- "national_value": "1.4989526753060833",
- "region_value": "1.2120785871951774",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.178540708240938",
- "national_value": "1.3481042238716148",
- "region_value": "1.2017194573972125",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.2505458670325407",
- "national_value": "1.3376078752006206",
- "region_value": "1.2074100210549727",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.5784876718188685",
- "national_value": "1.3572731286449182",
- "region_value": "1.5563930739522744",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.369037161144564",
- "national_value": "1.360705677152615",
- "region_value": "1.4210541710154538",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.528781160693957",
- "national_value": "1.474803324474663",
- "region_value": "1.6299002734223211",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.6965155777300396",
- "national_value": "1.4944211195175625",
- "region_value": "1.5488721770349039",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.679075380539964",
- "national_value": "1.3748941802394352",
- "region_value": "1.477304317799994",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.1411110774348534",
- "national_value": "1.3783354215594579",
- "region_value": "1.4590872128337622",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.6072710680272686",
- "national_value": "1.4558057901844157",
- "region_value": "1.4558057901844157",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.3093303553518707",
- "national_value": "1.5069809754963082",
- "region_value": "1.3463593879088378",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.7537700445365245",
- "national_value": "1.6679622365286086",
- "region_value": "1.728070959325373",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.9929952542178504",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.9929952542178504",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.4907935539456583",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.4907935539456583",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "4.44565987038197",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "4.44565987038197",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "3.025480939536137",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "3.025480939536137",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "3.7958036456408744",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "3.7958036456408744",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "3.667171387533977",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "3.667171387533977",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "3.294793145554919",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "3.294793145554919",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "5.478160590993339",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "5.478160590993339",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "6.47441565508421",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "6.47441565508421",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "11.5581554430651",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "11.5581554430651",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "9.358264195323308",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "9.358264195323308",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "13.597131750767801",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "13.597131750767801",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "16.65818805683479",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "16.65818805683479",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "17.982615154056774",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "17.982615154056774",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "17.819974890140838",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "17.819974890140838",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "16.403069093148886",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "16.403069093148886",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "24.87505872693393",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "24.87505872693393",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "17.404852111916288",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "17.404852111916288",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "25.07392272791258",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Massachusetts",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "25.07392272791258",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Massachusetts",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "14.742530975984678",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "14.742530975984678",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Massachusetts",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "9.264171743821006",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "9.264171743821006",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "9.882844067138155",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "9.882844067138155",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "8.048656058057844",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "8.048656058057844",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "4.761266173104907",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "4.761266173104907",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "5.1604955915991475",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "5.1604955915991475",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "8.516429527938476",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "8.516429527938476",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "5.481867860386739",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "5.481867860386739",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "2.705453604382457",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "2.705453604382457",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "2.705453604382457",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.4995002868151905",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.4995002868151905",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.4995002868151905",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.157214848049619",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.157214848049619",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.157214848049619",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "3.042458209132862",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "3.042458209132862",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "3.042458209132862",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.2754905169551845",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.2754905169551845",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.2754905169551845",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.9756540093105615",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.9756540093105615",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.9756540093105615",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.6811624040373616",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.6811624040373616",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.6811624040373616",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.2924718489194857",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.2924718489194857",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.2924718489194857",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.1526437679138106",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.1526437679138106",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.1526437679138106",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.4748041955328755",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.4748041955328755",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.4748041955328755",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.2520856721070537",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.2520856721070537",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.2520856721070537",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.178655217213049",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.178655217213049",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.178655217213049",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.103748149677294",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.103748149677294",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.103748149677294",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.190380734658525",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.190380734658525",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.190380734658525",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.3482861590389827",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.3482861590389827",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.3482861590389827",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.221489399821317",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.221489399821317",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.221489399821317",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0774966616457988",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0774966616457988",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0774966616457988",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.4285785622584513",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.4285785622584513",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.4285785622584513",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.1069563583905118",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.1069563583905118",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.1069563583905118",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.1069563583905118",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.1726515228393803",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.1726515228393803",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.1726515228393803",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.1726515228393803",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0321329636004282",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0321329636004282",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0321329636004282",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0321329636004282",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.1176537129264164",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.1176537129264164",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.1176537129264164",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.1176537129264164",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0749529369600865",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0749529369600865",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0749529369600865",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0749529369600865",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.2290667729038924",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.2290667729038924",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.2290667729038924",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.2290667729038924",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.5517789238735764",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.5517789238735764",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.5517789238735764",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Massachusetts",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.5517789238735764",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Massachusetts has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-04-23",
- "date_period": "All Results",
- "value": "7.456311707219384",
- "national_value": "1.3483509328559706",
- "region_value": "7.456311707219384",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2022-04-30",
- "date_period": "All Results",
- "value": "4.699526892586786",
- "national_value": "1.4914472684711386",
- "region_value": "4.699526892586786",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2022-05-07",
- "date_period": "All Results",
- "value": "2.1939449013224612",
- "national_value": "1.4054487457710798",
- "region_value": "2.1939449013224612",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-05-14",
- "date_period": "All Results",
- "value": "2.6395301629348356",
- "national_value": "1.603770824840521",
- "region_value": "2.6395301629348356",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-05-21",
- "date_period": "All Results",
- "value": "1.523145808290172",
- "national_value": "1.6151331114041896",
- "region_value": "1.523145808290172",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": "1.4909256039014742",
- "national_value": "1.6598224284451173",
- "region_value": "1.4909256039014742",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": "1.0046733115906423",
- "national_value": "1.4734515288198426",
- "region_value": "1.0046733115906423",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": "0.973763947522453",
- "national_value": "1.9124324956062713",
- "region_value": "0.973763947522453",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": "0.8832870291668794",
- "national_value": "1.3900747712132921",
- "region_value": "0.8832870291668794",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": "1.0477725580935375",
- "national_value": "1.3310194816554493",
- "region_value": "1.0477725580935375",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "1.8086762105440948",
- "national_value": "1.797445827207103",
- "region_value": "1.8086762105440948",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "1.6602487874671303",
- "national_value": "2.265982888946997",
- "region_value": "1.6602487874671303",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "1.2288993273104833",
- "national_value": "2.6512503036239994",
- "region_value": "1.2288993273104833",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "2.2782237042639117",
- "national_value": "2.2782237042639117",
- "region_value": "2.2782237042639117",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": "1.3184447790625762",
- "national_value": "1.8043202465812183",
- "region_value": "1.3184447790625762",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "1.5032458323665185",
- "national_value": "1.685820402830163",
- "region_value": "1.5432430534896904",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "1.907521607638234",
- "national_value": "1.6826083301683215",
- "region_value": "2.227721558683385",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "3.861217047169663",
- "national_value": "2.124626705610647",
- "region_value": "2.6772574795689947",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "2.132620977243405",
- "national_value": "2.6837021559305736",
- "region_value": "2.2459750305475423",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "2.484765731946492",
- "national_value": "1.6847888502204156",
- "region_value": "2.0098682272334982",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "4.682929337224813",
- "national_value": "1.7342704780502864",
- "region_value": "3.9445583194788516",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "3.3339711619996",
- "national_value": "2.5176843149970507",
- "region_value": "4.777028045244008",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "3.6193724042569473",
- "national_value": "3.3062068257654307",
- "region_value": "5.579833052034854",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "4.952126388249923",
- "national_value": "3.0259000068656716",
- "region_value": "4.855866526400565",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "5.465120330300345",
- "national_value": "3.5656963666126624",
- "region_value": "4.350497036950614",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "9.836301782302131",
- "national_value": "5.571054487750484",
- "region_value": "4.675875457493486",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "9.096320002820375",
- "national_value": "5.815815969221436",
- "region_value": "4.162465176566722",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "10.225215217268575",
- "national_value": "7.972715209443255",
- "region_value": "6.9378556039273525",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "12.423922137098309",
- "national_value": "8.36714533097982",
- "region_value": "8.643754406068942",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "14.433288960574634",
- "national_value": "10.662626695924502",
- "region_value": "11.607854304844885",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "14.363865224199836",
- "national_value": "11.980909201182696",
- "region_value": "9.078836860825643",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "17.870944827192677",
- "national_value": "10.608123300225985",
- "region_value": "10.694056423978786",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "13.67478625140852",
- "national_value": "13.542811094208",
- "region_value": "14.554436713539129",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "16.005154346632928",
- "national_value": "12.719191415297415",
- "region_value": "11.297450165477272",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "13.328637794420178",
- "national_value": "11.717398915456236",
- "region_value": "11.765557982649376",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "9.481550725773022",
- "national_value": "10.378844194454414",
- "region_value": "9.116557459382598",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "9.140458442583515",
- "national_value": "9.58426311998286",
- "region_value": "7.991110424469195",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "8.830268622396222",
- "national_value": "8.511935476968219",
- "region_value": "7.2303216345927765",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "9.285357355370062",
- "national_value": "7.91219972730154",
- "region_value": "7.050007413346095",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "8.177185771304828",
- "national_value": "6.4040522465371374",
- "region_value": "6.19725477545637",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "4.721055305649638",
- "national_value": "5.57261799627081",
- "region_value": "4.372879702551992",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "4.880657379686825",
- "national_value": "4.596671451155856",
- "region_value": "3.9095219051905423",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "4.842325023917903",
- "national_value": "4.534471689248122",
- "region_value": "4.111982935954425",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "5.967643432770529",
- "national_value": "4.778019873646184",
- "region_value": "4.597628916845259",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "3.3457996971193267",
- "national_value": "3.940062397453282",
- "region_value": "3.3651022690130112",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.979220037075264",
- "national_value": "3.366182006584707",
- "region_value": "3.4066910020440555",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.3259089154257566",
- "national_value": "2.984187025846241",
- "region_value": "3.017709697257796",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "2.4577553956306626",
- "national_value": "2.463264084926519",
- "region_value": "2.125723447890337",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "3.4952866524281903",
- "national_value": "2.0734171252350273",
- "region_value": "1.9785801638602805",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.6140045812897155",
- "national_value": "2.1706895617031954",
- "region_value": "2.2462331446880675",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.9943306804384164",
- "national_value": "2.029612060659673",
- "region_value": "2.174489550720086",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.2788590650195677",
- "national_value": "1.7212315200834434",
- "region_value": "1.663009891818219",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.196502979355445",
- "national_value": "1.4639104218258483",
- "region_value": "1.6729364399579305",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.2270184178489543",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.1999602710785329",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.3482495268823775",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.250375624260194",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.2521364552970158",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.3383821933207447",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.360372851033608",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.2974988997882608",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.059866205270268",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.2074361397830073",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.3341664780892086",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.3725092146584632",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.3847809782200866",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.2387299765008393",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.4488852511061292",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.1926943599396442",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.3395735488966016",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.9373894851265414",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.5096608943778618",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.5096608943778618",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.4790284947653496",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.4790284947653496",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.4551933694689367",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.4551933694689367",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.530783795509201",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.530783795509201",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.520564519646271",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.520564519646271",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "2.7883876425954206",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "2.7883876425954206",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.3011385263329063",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.3011385263329063",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.533886534532698",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.533886534532698",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.164519319417347",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.164519319417347",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.4764178288328607",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.4764178288328607",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "4.1036599153883735",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "4.1036599153883735",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "6.496327950580896",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "6.496327950580896",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "8.935307055181507",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "8.935307055181507",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "10.473162103192838",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "10.473162103192838",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "10.89299791317643",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "10.89299791317643",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "11.60317114599329",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "11.60317114599329",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "15.459526331276095",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "15.459526331276095",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "14.309229594155951",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "14.309229594155951",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "16.518097350365355",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "16.518097350365355",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "17.428855755170545",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "17.428855755170545",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "12.146941875439303",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "12.146941875439303",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "16.460393248671163",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "16.460393248671163",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "12.772399344189676",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "12.772399344189676",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "10.205857470333621",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "10.205857470333621",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "12.161581656307664",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "12.161581656307664",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Michigan",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "9.874995953363294",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "9.874995953363294",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "8.40503599234597",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "8.40503599234597",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Michigan",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "7.757542445109927",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "7.757542445109927",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "7.757542445109927",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "6.282076082259447",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "6.282076082259447",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "6.282076082259447",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "6.947454002302267",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "6.947454002302267",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "6.947454002302267",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "5.323345223144694",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "5.323345223144694",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "5.323345223144694",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "5.808900131198769",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "5.808900131198769",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "5.808900131198769",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Michigan",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "3.9477272961500844",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "3.9477272961500844",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "3.9477272961500844",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "2.330275496335474",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "2.330275496335474",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "2.330275496335474",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "3.2391092255125633",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "3.2391092255125633",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "3.2391092255125633",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.620343801181505",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.620343801181505",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.620343801181505",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.458785511971801",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.458785511971801",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.458785511971801",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.606996076225971",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.606996076225971",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.606996076225971",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.955031866730745",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.955031866730745",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.955031866730745",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.538733103413699",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.538733103413699",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.538733103413699",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.4885348210059481",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.4885348210059481",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.4885348210059481",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.4363131655235861",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.4363131655235861",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.4363131655235861",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.500369342880081",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.500369342880081",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.500369342880081",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2748407541036322",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2748407541036322",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2748407541036322",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.2857748320141078",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.2857748320141078",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.2857748320141078",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.5007838051003644",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.5007838051003644",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.5007838051003644",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.9878097805098376",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.9878097805098376",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.9878097805098376",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.9878097805098376",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.5756195019608663",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.5756195019608663",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.5756195019608663",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.5756195019608663",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.3199551196835944",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.3199551196835944",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.3199551196835944",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.3199551196835944",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.3383520804007214",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.3383520804007214",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.3383520804007214",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.3383520804007214",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.817382939923645",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.817382939923645",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.817382939923645",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.817382939923645",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.5404704028362355",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.5404704028362355",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.5404704028362355",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.5404704028362355",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.9564713888349377",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.9564713888349377",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.9564713888349377",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Michigan",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.9564713888349377",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Michigan has 6 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "1.0855097273700098",
- "national_value": "1.6847888502204156",
- "region_value": "2.0098682272334982",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "1.0687977963339852",
- "national_value": "1.7342704780502864",
- "region_value": "3.9445583194788516",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "1.1492061473802149",
- "national_value": "2.5176843149970507",
- "region_value": "4.777028045244008",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "2.0576837843724394",
- "national_value": "3.3062068257654307",
- "region_value": "5.579833052034854",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "1.2388032532692768",
- "national_value": "3.0259000068656716",
- "region_value": "4.855866526400565",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "0.9088228499079912",
- "national_value": "3.5656963666126624",
- "region_value": "4.350497036950614",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "1.0751881780598749",
- "national_value": "5.571054487750484",
- "region_value": "4.675875457493486",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "1.0542074543989324",
- "national_value": "5.815815969221436",
- "region_value": "4.162465176566722",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "3.4954673386141835",
- "national_value": "7.972715209443255",
- "region_value": "6.9378556039273525",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "12.158812656220382",
- "national_value": "8.36714533097982",
- "region_value": "8.643754406068942",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "12.535087097274973",
- "national_value": "10.662626695924502",
- "region_value": "11.607854304844885",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "15.191579185580729",
- "national_value": "11.980909201182696",
- "region_value": "9.078836860825643",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "13.439642690513066",
- "national_value": "10.608123300225985",
- "region_value": "10.694056423978786",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "15.813459455409172",
- "national_value": "13.542811094208",
- "region_value": "14.554436713539129",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "18.083412997545192",
- "national_value": "12.719191415297415",
- "region_value": "11.297450165477272",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "17.802172419650113",
- "national_value": "11.717398915456236",
- "region_value": "11.765557982649376",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "16.0759998262236",
- "national_value": "10.378844194454414",
- "region_value": "9.116557459382598",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "12.894525430104554",
- "national_value": "9.58426311998286",
- "region_value": "7.991110424469195",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "9.917785232382709",
- "national_value": "8.511935476968219",
- "region_value": "7.2303216345927765",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "11.537848280678013",
- "national_value": "7.91219972730154",
- "region_value": "7.050007413346095",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "10.8624886158833",
- "national_value": "6.4040522465371374",
- "region_value": "6.19725477545637",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "7.4974123860241875",
- "national_value": "5.57261799627081",
- "region_value": "4.372879702551992",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "9.540048458444263",
- "national_value": "4.596671451155856",
- "region_value": "3.9095219051905423",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "10.236977983561424",
- "national_value": "4.534471689248122",
- "region_value": "4.111982935954425",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "6.097746110546857",
- "national_value": "4.778019873646184",
- "region_value": "4.597628916845259",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "7.126168267435574",
- "national_value": "3.940062397453282",
- "region_value": "3.3651022690130112",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "5.970192486681945",
- "national_value": "3.366182006584707",
- "region_value": "3.4066910020440555",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "6.261592066360113",
- "national_value": "2.984187025846241",
- "region_value": "3.017709697257796",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "5.871365954272272",
- "national_value": "2.463264084926519",
- "region_value": "2.125723447890337",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "5.587811549043041",
- "national_value": "2.0734171252350273",
- "region_value": "1.9785801638602805",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.3022653192404663",
- "national_value": "2.1706895617031954",
- "region_value": "2.2462331446880675",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.7599813116013663",
- "national_value": "2.029612060659673",
- "region_value": "2.174489550720086",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.4722307818047609",
- "national_value": "1.7212315200834434",
- "region_value": "1.663009891818219",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.4535855876820414",
- "national_value": "1.4639104218258483",
- "region_value": "1.6729364399579305",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.3400985186810803",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "2.129989404405492",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.2638762885189443",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.1237439290786666",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.237645071691627",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.478717334966109",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.376301721135952",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.3954661557474677",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.2507206479953397",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.3173856954210525",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.1893974015699509",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.194089404148587",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.3614680395326682",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.099477781221652",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.1910870135018174",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.2214439364345582",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.327054982352246",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.8406932161592287",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.230790975196022",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.230790975196022",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.4170889876728783",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.4170889876728783",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.6906917286695706",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.6906917286695706",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.2636682249267381",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.2636682249267381",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "3.4909596789794586",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "3.4909596789794586",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "2.8239756038496795",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "2.8239756038496795",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.2494168189525579",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.2494168189525579",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.6880787196120934",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.6880787196120934",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.6560540949525824",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.6560540949525824",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "2.57516609601727",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "2.57516609601727",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.1951235381979783",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.1951235381979783",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "5.446763079575966",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "5.446763079575966",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "5.3593029441862505",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "5.3593029441862505",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "5.886670355374613",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "5.886670355374613",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "10.796450239475597",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "10.796450239475597",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "13.308113730571115",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "13.308113730571115",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "15.503208057450568",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "15.503208057450568",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "16.835273790333655",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "16.835273790333655",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "17.261098283481374",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "17.261098283481374",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "18.698524819600514",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "18.698524819600514",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "15.779285446341298",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "15.779285446341298",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "13.447543142316306",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "13.447543142316306",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "10.12418315278072",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "10.12418315278072",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "8.50970621810376",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "8.50970621810376",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "12.571288032570068",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "12.571288032570068",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Minnesota",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "11.645919306943302",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "11.645919306943302",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "8.62528711418572",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "8.62528711418572",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "7.10538662114983",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "7.10538662114983",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "7.10538662114983",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "8.407094764790472",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "8.407094764790472",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "8.407094764790472",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "7.088153881174881",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "7.088153881174881",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "7.088153881174881",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "6.796183552586601",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "6.796183552586601",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "6.796183552586601",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "5.991251995658013",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "5.991251995658013",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "5.991251995658013",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "3.123124006025714",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "3.123124006025714",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "3.123124006025714",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "2.5198066782863453",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "2.5198066782863453",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "2.5198066782863453",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.1052355884133878",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.1052355884133878",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.1052355884133878",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.2689780054783193",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.2689780054783193",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.2689780054783193",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.6365492322916322",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.6365492322916322",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.6365492322916322",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.2844215143092392",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.2844215143092392",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.2844215143092392",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "2.005372518340158",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "2.005372518340158",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "2.005372518340158",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.3047801070418643",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.3047801070418643",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.3047801070418643",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.4386538278249",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.4386538278249",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.4386538278249",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.2592689793382723",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.2592689793382723",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.2592689793382723",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.4575428888062478",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.4575428888062478",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.4575428888062478",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.6613693829487723",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.6613693829487723",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.6613693829487723",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.3864804760946479",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.3864804760946479",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.3864804760946479",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.2053352040201584",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.2053352040201584",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.2053352040201584",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.2050581826559958",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.2050581826559958",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.2050581826559958",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.2050581826559958",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.2679820340127128",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.2679820340127128",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.2679820340127128",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.2679820340127128",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.1136783719922607",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.1136783719922607",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.1136783719922607",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.1136783719922607",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.138730850695574",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.138730850695574",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.138730850695574",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.138730850695574",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.3672068266606634",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.3672068266606634",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.3672068266606634",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.3672068266606634",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.2046050800557988",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.2046050800557988",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.2046050800557988",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.2046050800557988",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.3988729744992174",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.3988729744992174",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.3988729744992174",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Minnesota",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.3988729744992174",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Minnesota has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "8.990199014162425",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "8.990199014162425",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "12.254073446058296",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Mississippi",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "12.254073446058296",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "10.61076839708118",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "10.61076839708118",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.303687359468373",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.303687359468373",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "14.422807917969457",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "14.422807917969457",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "9.313595549145498",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "9.313595549145498",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "7.173484863607962",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "7.173484863607962",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "10.266644046247341",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "10.266644046247341",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "5.934002544044027",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "5.934002544044027",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "8.110480507785892",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "8.110480507785892",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Mississippi",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "4.592689936548858",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "4.592689936548858",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "6.220870913161617",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "6.220870913161617",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "4.307509203250955",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "4.307509203250955",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "4.541928612232084",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "4.541928612232084",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "6.009871328385228",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "6.009871328385228",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.8781549138134048",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.8781549138134048",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": null,
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": null,
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": null,
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": null,
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": null,
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": null,
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.659921252772663",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.659921252772663",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.659921252772663",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "3.1308950614947872",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "3.1308950614947872",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "3.1308950614947872",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "2.620246251720352",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "2.620246251720352",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "2.620246251720352",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.1475452154306423",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.1475452154306423",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.1475452154306423",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "2.7818264763612177",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "2.7818264763612177",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "2.7818264763612177",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.739349231331695",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.739349231331695",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.739349231331695",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.1583383854568159",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.1583383854568159",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.1583383854568159",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.9772502869816533",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.9772502869816533",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.9772502869816533",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.441460219847474",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.441460219847474",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.441460219847474",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "3.820085633375009",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "3.820085633375009",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "3.820085633375009",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.1925333901994053",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.1925333901994053",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.1925333901994053",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.1485826053774706",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.1485826053774706",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.1485826053774706",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.6231018725363078",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.6231018725363078",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.6231018725363078",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.128559074046691",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.128559074046691",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.128559074046691",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.128559074046691",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.2652698838633623",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.2652698838633623",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.2652698838633623",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.2652698838633623",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.6062568603685858",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.6062568603685858",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.6062568603685858",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.6062568603685858",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.3470624307942218",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.3470624307942218",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.3470624307942218",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.3470624307942218",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "3.039698904730146",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "3.039698904730146",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "3.039698904730146",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "3.039698904730146",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.583210062690207",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.583210062690207",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.583210062690207",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.583210062690207",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.7430990979624545",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.7430990979624545",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.7430990979624545",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Mississippi",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.7430990979624545",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Mississippi has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "589.2023049247579",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Missouri",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "589.2023049247579",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Missouri",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "589.2023049247579",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Missouri",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Missouri",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Missouri has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.4254820243192503",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.6925170521652204",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.6029548904669575",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "3.413450843148597",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "5.921069597654858",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "5.921069597654858",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.1161081406955473",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.1161081406955473",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.3762408108177722",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.3762408108177722",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.083582484019547",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.083582484019547",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.1025879120798585",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.1025879120798585",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.1531679178671261",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.1531679178671261",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.2076951836730903",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.2076951836730903",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.192258137316719",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.192258137316719",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.1075429656370808",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.1075429656370808",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.1561693292602548",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.1561693292602548",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "1.040707806032283",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "1.040707806032283",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "1.035506900226403",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "1.035506900226403",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "1.0587674274515124",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "1.0587674274515124",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "1.1016122382250337",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "1.1016122382250337",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "1.0680249794631542",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "1.0680249794631542",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "5.719027039881424",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "5.719027039881424",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "5.3752093513605335",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "5.3752093513605335",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "10.612367196237368",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nebraska",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "10.612367196237368",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nebraska",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "13.176718597050051",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Nebraska",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "13.176718597050051",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Nebraska",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "7.490981908213627",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "7.490981908213627",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "2.990353101634092",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "2.990353101634092",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "3.6014672694687855",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "3.6014672694687855",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "6.277184398661655",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "6.277184398661655",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "4.1195620648015945",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "4.1195620648015945",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "4.763496687761118",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "4.763496687761118",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "5.350310590468272",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "5.350310590468272",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "7.897175754689398",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "7.897175754689398",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "6.745929886382029",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "6.745929886382029",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "6.745929886382029",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "6.579026093036669",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "6.579026093036669",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "6.579026093036669",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "6.219977560006727",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "6.219977560006727",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "6.219977560006727",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "6.70230593847169",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "6.70230593847169",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "6.70230593847169",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "5.778234732322133",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "5.778234732322133",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "5.778234732322133",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "3.812850796236515",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "3.812850796236515",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "3.812850796236515",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.1345620317864944",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.1345620317864944",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.1345620317864944",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.768684211563123",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.768684211563123",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.768684211563123",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.2552118328375501",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.2552118328375501",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.2552118328375501",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.2086804198450911",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.2086804198450911",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.2086804198450911",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.1167340755489232",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.1167340755489232",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.1167340755489232",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.1908672569625325",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.1908672569625325",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.1908672569625325",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.105192754257821",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.105192754257821",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.105192754257821",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.1312704727734753",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.1312704727734753",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.1312704727734753",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.1008470812387339",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.1008470812387339",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.1008470812387339",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.1671795346253853",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.1671795346253853",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.1671795346253853",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2316287750254449",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2316287750254449",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2316287750254449",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.212297884783796",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.212297884783796",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.212297884783796",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.1884803422921029",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.1884803422921029",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.1884803422921029",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.1823223246424757",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.1823223246424757",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.1823223246424757",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.1823223246424757",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.1790655308471276",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.1790655308471276",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.1790655308471276",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.1790655308471276",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0951415796216026",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0951415796216026",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0951415796216026",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0951415796216026",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.1136785690432047",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.1136785690432047",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.1136785690432047",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.1136785690432047",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.097320805558556",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.097320805558556",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.097320805558556",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.097320805558556",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0872343025877031",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0872343025877031",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0872343025877031",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0872343025877031",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.1462814981230953",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.1462814981230953",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.1462814981230953",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nebraska",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.1462814981230953",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Nebraska has 16 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "3.636525853867854",
- "national_value": "2.1706895617031954",
- "region_value": "2.271266445471554",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "6.7980930811823015",
- "national_value": "2.029612060659673",
- "region_value": "2.147005652039137",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.105015844204576",
- "national_value": "1.7212315200834434",
- "region_value": "1.9819460472081987",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.0146151316025638",
- "national_value": "1.4639104218258483",
- "region_value": "1.5419858682344478",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "0.9119660045184791",
- "national_value": "1.3457689462373816",
- "region_value": "1.2707146202174076",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "2.4072723433309666",
- "national_value": "1.3444098672308302",
- "region_value": "1.443292238886326",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.1573325313985634",
- "national_value": "1.4600144152295942",
- "region_value": "1.3435613387545668",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.3083346816707955",
- "national_value": "1.4508980845678203",
- "region_value": "1.430055591418352",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.24626916087186",
- "national_value": "1.3757159403094235",
- "region_value": "1.3727060659615529",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.2804200677933548",
- "national_value": "1.2604448744176628",
- "region_value": "1.2839751640924821",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.4779848482671476",
- "national_value": "1.4989526753060833",
- "region_value": "1.3607571884416894",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "2.2354980158911006",
- "national_value": "1.3481042238716148",
- "region_value": "1.3886102626022836",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.1494999517646323",
- "national_value": "1.3376078752006206",
- "region_value": "1.382178938433719",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.4448558618226552",
- "national_value": "1.3572731286449182",
- "region_value": "1.3572731286449182",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.1907943023292484",
- "national_value": "1.360705677152615",
- "region_value": "1.4047044137440596",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "2.213061619801095",
- "national_value": "1.474803324474663",
- "region_value": "1.459326533369778",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.3035344955164017",
- "national_value": "1.4944211195175625",
- "region_value": "1.492965579589258",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.3959000090594562",
- "national_value": "1.3748941802394352",
- "region_value": "1.4157322768529863",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.2179324514362861",
- "national_value": "1.3783354215594579",
- "region_value": "1.4916703045497908",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.1837046773450133",
- "national_value": "1.4558057901844157",
- "region_value": "1.4386947303080395",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.5656761544357192",
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.7313151483042084",
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.516924411211426",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.516924411211426",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.969786651148495",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.969786651148495",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.3360845561345833",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.3360845561345833",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.996579966104625",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.996579966104625",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "5.474445000948154",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "5.474445000948154",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.2559394402798472",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.2559394402798472",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "3.1499094379384442",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "3.1499094379384442",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.7098544896551966",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.7098544896551966",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "3.9476865597733",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "3.9476865597733",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.9960213649656766",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.9960213649656766",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "7.0416535354891865",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "7.0416535354891865",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "5.696126131757521",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "5.696126131757521",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "9.92960168969247",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "9.92960168969247",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "7.466456449583886",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "7.466456449583886",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "10.811509074395076",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "10.811509074395076",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "11.30105860909586",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "11.30105860909586",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "11.183896475246645",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "11.183896475246645",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "12.202631461507318",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "12.202631461507318",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "16.1824188930786",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "16.1824188930786",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "15.705297229406472",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "15.705297229406472",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "18.258309725109548",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "18.258309725109548",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "8.825216226597785",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "8.825216226597785",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "8.817111260301955",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "8.817111260301955",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Nevada",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "12.692878564683244",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "12.692878564683244",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Nevada",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "7.456348987242089",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "7.456348987242089",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "5.856441535275913",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "5.856441535275913",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "6.668837534989613",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "6.668837534989613",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "4.727169469463154",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "4.727169469463154",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "4.727169469463154",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.856872665689368",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.856872665689368",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.856872665689368",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "4.108199084554815",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "4.108199084554815",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "4.108199084554815",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "4.521269456638282",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "4.521269456638282",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "4.521269456638282",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Nevada",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "2.6397826821499812",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "2.6397826821499812",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "2.6397826821499812",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "3.0537505503552134",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "3.0537505503552134",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "3.0537505503552134",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "0.9362226568879273",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "0.9362226568879273",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "0.9362226568879273",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.080664637850872",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.080664637850872",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.080664637850872",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.1828081079187873",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.1828081079187873",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.1828081079187873",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "2.887837501304052",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "2.887837501304052",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "2.887837501304052",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "3.0244843949456275",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "3.0244843949456275",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "3.0244843949456275",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "2.2893968552013",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "2.2893968552013",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "2.2893968552013",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.4112179133758191",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.4112179133758191",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.4112179133758191",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.1441167414652889",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.1441167414652889",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.1441167414652889",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.208007219422517",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.208007219422517",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.208007219422517",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.1647986364240943",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.1647986364240943",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.1647986364240943",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.372693681472718",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.372693681472718",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.372693681472718",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "0.9885556539292415",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "0.9885556539292415",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "0.9885556539292415",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.4625087758711581",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.4625087758711581",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.4625087758711581",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.1316833229126033",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.1316833229126033",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.1316833229126033",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.1316833229126033",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.2018622442057287",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.2018622442057287",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.2018622442057287",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.2018622442057287",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "0.9318696204535927",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "0.9318696204535927",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "0.9318696204535927",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "0.9318696204535927",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.4384066736819876",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.4384066736819876",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.4384066736819876",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.4384066736819876",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.3554594406160196",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.3554594406160196",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.3554594406160196",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.3554594406160196",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.1923613287743329",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.1923613287743329",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.1923613287743329",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.1923613287743329",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.1416400256506092",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.1416400256506092",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.1416400256506092",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Nevada",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.1416400256506092",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Nevada has 1 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "8.030675325886032",
- "national_value": "5.571054487750484",
- "region_value": "8.287580296694221",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "7.059528040377987",
- "national_value": "5.815815969221436",
- "region_value": "9.611905091332462",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "10.040434511110679",
- "national_value": "7.972715209443255",
- "region_value": "10.222280230779521",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "13.332623971930818",
- "national_value": "8.36714533097982",
- "region_value": "13.332623971930818",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "12.31190801708075",
- "national_value": "10.662626695924502",
- "region_value": "12.981677871885413",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "11.243396217719402",
- "national_value": "11.980909201182696",
- "region_value": "14.6586796823436",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "14.996580699866445",
- "national_value": "10.608123300225985",
- "region_value": "15.86594348238791",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "15.676708535001978",
- "national_value": "13.542811094208",
- "region_value": "15.40699593926659",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "12.847090162292838",
- "national_value": "12.719191415297415",
- "region_value": "13.262620401834589",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "17.52913052411634",
- "national_value": "11.717398915456236",
- "region_value": "11.352594698189726",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "10.311835413726385",
- "national_value": "10.378844194454414",
- "region_value": "11.022895792731262",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "9.23598572210715",
- "national_value": "9.58426311998286",
- "region_value": "9.775431860636818",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "8.878169179494536",
- "national_value": "8.511935476968219",
- "region_value": "9.975037191136114",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "7.655517149563732",
- "national_value": "7.91219972730154",
- "region_value": "9.243805557172777",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "5.484335628234252",
- "national_value": "6.4040522465371374",
- "region_value": "5.484335628234252",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "4.746544377664418",
- "national_value": "5.57261799627081",
- "region_value": "5.802422501646377",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "4.92677539730301",
- "national_value": "4.596671451155856",
- "region_value": "4.92677539730301",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "3.402609187477536",
- "national_value": "4.534471689248122",
- "region_value": "3.9249168617913623",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "4.723047307812709",
- "national_value": "4.778019873646184",
- "region_value": "4.723047307812709",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "5.57536013435741",
- "national_value": "3.940062397453282",
- "region_value": "3.9362062091661563",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "3.3148858132200267",
- "national_value": "3.366182006584707",
- "region_value": "3.195568317061261",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.271768093740723",
- "national_value": "2.984187025846241",
- "region_value": "3.424697281051291",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.2428671517600212",
- "national_value": "2.463264084926519",
- "region_value": "3.320895783680351",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.1329436549742566",
- "national_value": "2.0734171252350273",
- "region_value": "2.1329436549742566",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.5227546028801007",
- "national_value": "2.1706895617031954",
- "region_value": "1.9790130601465161",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.3501697053325648",
- "national_value": "2.029612060659673",
- "region_value": "1.7696449985793985",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.0576946911707497",
- "national_value": "1.7212315200834434",
- "region_value": "1.5359662525874158",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.2897113080281324",
- "national_value": "1.4639104218258483",
- "region_value": "1.2897113080281324",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.2301246752194954",
- "national_value": "1.3457689462373816",
- "region_value": "1.2042322642300383",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.2855234558614357",
- "national_value": "1.3444098672308302",
- "region_value": "1.2765690911726495",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.2352814451011624",
- "national_value": "1.4600144152295942",
- "region_value": "1.2412799008649893",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.2210688431088474",
- "national_value": "1.4508980845678203",
- "region_value": "1.3338419322872777",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.172833896684747",
- "national_value": "1.3757159403094235",
- "region_value": "1.332853355543047",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.088336892301102",
- "national_value": "1.2604448744176628",
- "region_value": "1.1731847577021368",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "0.9064865455748627",
- "national_value": "1.4989526753060833",
- "region_value": "1.2120785871951774",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.1910083405408836",
- "national_value": "1.3481042238716148",
- "region_value": "1.2017194573972125",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.2865378821500055",
- "national_value": "1.3376078752006206",
- "region_value": "1.2074100210549727",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.6273564728709644",
- "national_value": "1.3572731286449182",
- "region_value": "1.5563930739522744",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.204012880657625",
- "national_value": "1.360705677152615",
- "region_value": "1.4210541710154538",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.6299002734223211",
- "national_value": "1.474803324474663",
- "region_value": "1.6299002734223211",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.48221417443634",
- "national_value": "1.4944211195175625",
- "region_value": "1.5488721770349039",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.3105953191395014",
- "national_value": "1.3748941802394352",
- "region_value": "1.477304317799994",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "2.466007831932311",
- "national_value": "1.3783354215594579",
- "region_value": "1.4590872128337622",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.4267473816582372",
- "national_value": "1.4558057901844157",
- "region_value": "1.4558057901844157",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.3463593879088378",
- "national_value": "1.5069809754963082",
- "region_value": "1.3463593879088378",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.4455371666898313",
- "national_value": "1.6679622365286086",
- "region_value": "1.728070959325373",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.408685748535813",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.408685748535813",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.5756699895071984",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.5756699895071984",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.582642096943017",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.582642096943017",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.290493776748658",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.290493776748658",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "3.242811637299353",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "3.242811637299353",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.5598839788921455",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.5598839788921455",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.7701617283764837",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.7701617283764837",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.2339129630120276",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.2339129630120276",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "5.05998302830992",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "5.05998302830992",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "2.384450105168319",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "2.384450105168319",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "7.536891478255426",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "7.536891478255426",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "8.650008769130464",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "8.650008769130464",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "10.871744376772288",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "10.871744376772288",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "11.581494012633225",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "11.581494012633225",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.549539926843345",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.549539926843345",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "10.474441930441298",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "10.474441930441298",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "13.02341637597396",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "13.02341637597396",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "17.191034767863943",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "17.191034767863943",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "20.369663755291512",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "New Hampshire",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "20.369663755291512",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "New Hampshire",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "17.190954712841073",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "17.190954712841073",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Hampshire",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "7.0549825501276455",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "7.0549825501276455",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "8.280453547750945",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "8.280453547750945",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "8.85588028373237",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "8.85588028373237",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Hampshire",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "6.05297148761563",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "6.05297148761563",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "5.231407756697735",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "5.231407756697735",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "2.043638391418949",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "2.043638391418949",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "2.723701958782944",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "2.723701958782944",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "6.509176825961697",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "6.509176825961697",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "6.509176825961697",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "7.224008710435315",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "7.224008710435315",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "7.224008710435315",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "4.887468603897603",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "4.887468603897603",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "4.887468603897603",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "3.2698051936084314",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "3.2698051936084314",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "3.2698051936084314",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "6.226303419009543",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "6.226303419009543",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "6.226303419009543",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "6.054336956303269",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "6.054336956303269",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "6.054336956303269",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "5.949479652993018",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "5.949479652993018",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "5.949479652993018",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.6914033600810674",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.6914033600810674",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.6914033600810674",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.0924566138447327",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.0924566138447327",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.0924566138447327",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "2.3910952122479787",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "2.3910952122479787",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "2.3910952122479787",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.7861080973227166",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.7861080973227166",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.7861080973227166",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.4477254607858132",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.4477254607858132",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.4477254607858132",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.3886784899308982",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.3886784899308982",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.3886784899308982",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.271993667849793",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.271993667849793",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.271993667849793",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.2696127674291988",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.2696127674291988",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.2696127674291988",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0737632960465298",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0737632960465298",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0737632960465298",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.383564590402965",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.383564590402965",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.383564590402965",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.081606844446632",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.081606844446632",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.081606844446632",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.081342178390654",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.081342178390654",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.081342178390654",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.081342178390654",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0318745842641257",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0318745842641257",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0318745842641257",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0318745842641257",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.3516769446250887",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.3516769446250887",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.3516769446250887",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.3516769446250887",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.1183944500765806",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.1183944500765806",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.1183944500765806",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.1183944500765806",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.3077132357102066",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.3077132357102066",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.3077132357102066",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.3077132357102066",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.1028312292222866",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.1028312292222866",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.1028312292222866",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Hampshire",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.1028312292222866",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New Hampshire has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "2.263575653457837",
- "national_value": "1.685820402830163",
- "region_value": "2.5444295098770953",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "2.147741771364831",
- "national_value": "1.6826083301683215",
- "region_value": "3.092350051709369",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "1.1829720022125016",
- "national_value": "2.124626705610647",
- "region_value": "2.3234210966894278",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "6.029904690065607",
- "national_value": "2.6837021559305736",
- "region_value": "3.5776423220748423",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "2.534327592334763",
- "national_value": "1.6847888502204156",
- "region_value": "2.534327592334763",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "5.319195928368431",
- "national_value": "1.7342704780502864",
- "region_value": "4.314434774408644",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "1.874307646691971",
- "national_value": "2.5176843149970507",
- "region_value": "2.3209286389498636",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "6.197745879143889",
- "national_value": "3.3062068257654307",
- "region_value": "4.809098546192238",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "3.0368126801277913",
- "national_value": "3.0259000068656716",
- "region_value": "5.132452963717157",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "4.019826528480077",
- "national_value": "3.5656963666126624",
- "region_value": "5.340518945858676",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "4.593797846019775",
- "national_value": "5.571054487750484",
- "region_value": "8.287580296694221",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "9.611905091332462",
- "national_value": "5.815815969221436",
- "region_value": "9.611905091332462",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "10.222280230779521",
- "national_value": "7.972715209443255",
- "region_value": "10.222280230779521",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "10.701952320515701",
- "national_value": "8.36714533097982",
- "region_value": "13.332623971930818",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "11.15190350147092",
- "national_value": "10.662626695924502",
- "region_value": "12.981677871885413",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "13.28629037877152",
- "national_value": "11.980909201182696",
- "region_value": "14.6586796823436",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "11.572523574519522",
- "national_value": "10.608123300225985",
- "region_value": "15.86594348238791",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "8.984761932956078",
- "national_value": "13.542811094208",
- "region_value": "15.40699593926659",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "12.484600408725537",
- "national_value": "12.719191415297415",
- "region_value": "13.262620401834589",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "12.142916366282984",
- "national_value": "11.717398915456236",
- "region_value": "11.352594698189726",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "13.039982776669191",
- "national_value": "10.378844194454414",
- "region_value": "11.022895792731262",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "12.630744879218454",
- "national_value": "9.58426311998286",
- "region_value": "9.775431860636818",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "12.595292845652526",
- "national_value": "8.511935476968219",
- "region_value": "9.975037191136114",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "10.838690672943137",
- "national_value": "7.91219972730154",
- "region_value": "9.243805557172777",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "7.836380833886862",
- "national_value": "6.4040522465371374",
- "region_value": "5.484335628234252",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "8.05679712652808",
- "national_value": "5.57261799627081",
- "region_value": "5.802422501646377",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "7.816403721485273",
- "national_value": "4.596671451155856",
- "region_value": "4.92677539730301",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "6.818527079088513",
- "national_value": "4.534471689248122",
- "region_value": "3.9249168617913623",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "6.875154190258253",
- "national_value": "4.778019873646184",
- "region_value": "4.723047307812709",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "5.589406163605723",
- "national_value": "3.940062397453282",
- "region_value": "3.9362062091661563",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "3.547993600778173",
- "national_value": "3.366182006584707",
- "region_value": "3.195568317061261",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "6.388325714768609",
- "national_value": "2.984187025846241",
- "region_value": "3.424697281051291",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "3.7336026861468206",
- "national_value": "2.463264084926519",
- "region_value": "3.320895783680351",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "2.8997164628258854",
- "national_value": "2.0734171252350273",
- "region_value": "2.1329436549742566",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.4839463991059907",
- "national_value": "2.1706895617031954",
- "region_value": "1.9790130601465161",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.5678378249101343",
- "national_value": "2.029612060659673",
- "region_value": "1.7696449985793985",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "2.8610678623560823",
- "national_value": "1.7212315200834434",
- "region_value": "1.5359662525874158",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.3831187323386747",
- "national_value": "1.4639104218258483",
- "region_value": "1.2897113080281324",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.1881362996275429",
- "national_value": "1.3457689462373816",
- "region_value": "1.2042322642300383",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.4695933083500747",
- "national_value": "1.3444098672308302",
- "region_value": "1.2765690911726495",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.0099870830997266",
- "national_value": "1.4600144152295942",
- "region_value": "1.2412799008649893",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.2048619488021668",
- "national_value": "1.4508980845678203",
- "region_value": "1.3338419322872777",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.2162901011634077",
- "national_value": "1.3757159403094235",
- "region_value": "1.332853355543047",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.3937203257386215",
- "national_value": "1.2604448744176628",
- "region_value": "1.1731847577021368",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.4338344432207655",
- "national_value": "1.4989526753060833",
- "region_value": "1.2120785871951774",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.1831558157426783",
- "national_value": "1.3481042238716148",
- "region_value": "1.2017194573972125",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.2074100210549727",
- "national_value": "1.3376078752006206",
- "region_value": "1.2074100210549727",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.7190201162561547",
- "national_value": "1.3572731286449182",
- "region_value": "1.5563930739522744",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.6085478656237466",
- "national_value": "1.360705677152615",
- "region_value": "1.4210541710154538",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.9490087098990938",
- "national_value": "1.474803324474663",
- "region_value": "1.6299002734223211",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.5790723627079908",
- "national_value": "1.4944211195175625",
- "region_value": "1.5488721770349039",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.380021136724365",
- "national_value": "1.3748941802394352",
- "region_value": "1.477304317799994",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.484839321175655",
- "national_value": "1.3783354215594579",
- "region_value": "1.4590872128337622",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.610328819466189",
- "national_value": "1.4558057901844157",
- "region_value": "1.4558057901844157",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.4096712203538462",
- "national_value": "1.5069809754963082",
- "region_value": "1.3463593879088378",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.9729963470191976",
- "national_value": "1.6679622365286086",
- "region_value": "1.728070959325373",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.5978384039368967",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.5978384039368967",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.441361644455068",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.441361644455068",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.5581585918071634",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.5581585918071634",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.4040626824361357",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.4040626824361357",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.5784103275286157",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.5784103275286157",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "2.2326815976779653",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "2.2326815976779653",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.690312463827527",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.690312463827527",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.147739835472862",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.147739835472862",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.65963728712335",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.65963728712335",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.668343327233192",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.668343327233192",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "7.257866960752731",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "7.257866960752731",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "10.966940826480998",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "10.966940826480998",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "12.56074326000116",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "12.56074326000116",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "11.666978411356684",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "11.666978411356684",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.548383194599815",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.548383194599815",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "13.831701354292173",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "13.831701354292173",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "12.528598101013129",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "12.528598101013129",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "11.154878473506358",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "11.154878473506358",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "12.68765110207396",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "12.68765110207396",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New Jersey",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "11.035821947931247",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "11.035821947931247",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "7.704501229887211",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "7.704501229887211",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "8.04269748470431",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "8.04269748470431",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Jersey",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "3.051286547384355",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "3.051286547384355",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "5.1467852695825576",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "5.1467852695825576",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "5.829751443517116",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "5.829751443517116",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "4.498482336394339",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "4.498482336394339",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "4.767217087512503",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "4.767217087512503",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "3.807393011260837",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "3.807393011260837",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "3.807393011260837",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.82004195457743",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.82004195457743",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.82004195457743",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.4370737417038146",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.4370737417038146",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.4370737417038146",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.57571080343081",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.57571080343081",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.57571080343081",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.8450259167857392",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.8450259167857392",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.8450259167857392",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.7705801330982096",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.7705801330982096",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.7705801330982096",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.3824983394892525",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.3824983394892525",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.3824983394892525",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.358090084832923",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.358090084832923",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.358090084832923",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.1671849972192123",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.1671849972192123",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.1671849972192123",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.2233977897295667",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.2233977897295667",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.2233977897295667",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.1601985864413396",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.1601985864413396",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.1601985864413396",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.179857093122995",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.179857093122995",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.179857093122995",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.1282979961634236",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.1282979961634236",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.1282979961634236",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0852732345530698",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0852732345530698",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0852732345530698",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.083691250667975",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.083691250667975",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.083691250667975",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0057374430902541",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0057374430902541",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0057374430902541",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0438056222281125",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0438056222281125",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0438056222281125",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.1883618843477866",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.1883618843477866",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.1883618843477866",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0121436630566936",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0121436630566936",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0121436630566936",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.1273651089467147",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.1273651089467147",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.1273651089467147",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.1273651089467147",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.1077445615227037",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.1077445615227037",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.1077445615227037",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.1077445615227037",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0471603565542438",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0471603565542438",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0471603565542438",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0471603565542438",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.2571232505594228",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.2571232505594228",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.2571232505594228",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.2571232505594228",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.085101728734589",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.085101728734589",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.085101728734589",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.085101728734589",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.2742757720789695",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.2742757720789695",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.2742757720789695",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.2742757720789695",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0466998026106575",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0466998026106575",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0466998026106575",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Jersey",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0466998026106575",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New Jersey has 18 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "6.689598425191891",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "6.689598425191891",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "10.552009381875877",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "10.552009381875877",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "5.919917420222921",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "5.919917420222921",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "5.7685607774222145",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "5.7685607774222145",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "18.68904962687398",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Mexico",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "18.68904962687398",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Mexico",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "20.696288007292257",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "New Mexico",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "20.696288007292257",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "New Mexico",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "15.246261997801373",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Mexico",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "15.246261997801373",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New Mexico",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "4.416068860918073",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "4.416068860918073",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "6.284770178625666",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "6.284770178625666",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "6.334000157217066",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "6.334000157217066",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "5.834373097626697",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "5.834373097626697",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "7.2692292391026605",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "7.2692292391026605",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "3.0061176706681434",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "3.0061176706681434",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "6.806528328708602",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "6.806528328708602",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "28.51768344421124",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "28.51768344421124",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "28.51768344421124",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "7.727775431992429",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "7.727775431992429",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "7.727775431992429",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.9743798408479696",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.9743798408479696",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.9743798408479696",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "4.128063709047293",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "4.128063709047293",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "4.128063709047293",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.662761296450954",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.662761296450954",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.662761296450954",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.5834688461142994",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.5834688461142994",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.5834688461142994",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New Mexico",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "New Mexico has 2 site(s) reporting in the past week, and 1 (50%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.389146797427932",
- "national_value": "1.3783354215594579",
- "region_value": "1.4590872128337622",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.2488693969250002",
- "national_value": "1.4558057901844157",
- "region_value": "1.4558057901844157",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.3798054322493094",
- "national_value": "1.5069809754963082",
- "region_value": "1.3463593879088378",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.599644432690915",
- "national_value": "1.6679622365286086",
- "region_value": "1.728070959325373",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.0694665247340538",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.0694665247340538",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.3569638233217316",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.3569638233217316",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.6808869943086138",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.6808869943086138",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.784595206351487",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.784595206351487",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "3.1517000932469155",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "3.1517000932469155",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.831065502030056",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.831065502030056",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.4735303362986099",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.4735303362986099",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.2836604152127753",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.2836604152127753",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.5557328619322903",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.5557328619322903",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.3959808341119686",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.3959808341119686",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "2.7568700666639194",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "2.7568700666639194",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "8.782751986219335",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "8.782751986219335",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "6.697829567496756",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "6.697829567496756",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "9.475037885120713",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "9.475037885120713",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.188971302076485",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.188971302076485",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "12.77357263862074",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "12.77357263862074",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "16.879278890130593",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "16.879278890130593",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "14.160858546002537",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "14.160858546002537",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "12.773924740690369",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "12.773924740690369",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "15.289547623793347",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "15.289547623793347",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "New York",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "8.033412770248157",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "8.033412770248157",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "7.797722471807774",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "7.797722471807774",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "5.762923219568825",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "5.762923219568825",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "7.8498508518477825",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "7.8498508518477825",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "7.312523378121226",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "7.312523378121226",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "11.79720166679541",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "11.79720166679541",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "8.324474802313198",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "8.324474802313198",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "New York",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "7.258877130388187",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "7.258877130388187",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "7.258877130388187",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "4.395351699644256",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "4.395351699644256",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "4.395351699644256",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.391954543676909",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.391954543676909",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.391954543676909",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "5.71003462143395",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "5.71003462143395",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "5.71003462143395",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "3.6025739529268344",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "3.6025739529268344",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "3.6025739529268344",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.1356064122736664",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.1356064122736664",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.1356064122736664",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "2.8883530017932997",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "2.8883530017932997",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "2.8883530017932997",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "5.027170557581662",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "5.027170557581662",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "5.027170557581662",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "3.037167229313803",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "3.037167229313803",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "3.037167229313803",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.3884573041326893",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.3884573041326893",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.3884573041326893",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "4.53898463977725",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "4.53898463977725",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "4.53898463977725",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "New York",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.2084081600256933",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.2084081600256933",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.2084081600256933",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.4984182683192604",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.4984182683192604",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.4984182683192604",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.2538222571920077",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.2538222571920077",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.2538222571920077",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.3149511258889217",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.3149511258889217",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.3149511258889217",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.4825183188654125",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.4825183188654125",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.4825183188654125",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.075195917553204",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.075195917553204",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.075195917553204",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.2698371702342723",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.2698371702342723",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.2698371702342723",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.3061767738057841",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.3061767738057841",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.3061767738057841",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.8769041280947516",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.8769041280947516",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.8769041280947516",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.8769041280947516",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.3274977706892255",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.3274977706892255",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.3274977706892255",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.3274977706892255",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.1560967235006703",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.1560967235006703",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.1560967235006703",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.1560967235006703",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.086856051910112",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.086856051910112",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.086856051910112",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.086856051910112",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.28564970698459",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.28564970698459",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.28564970698459",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.28564970698459",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.6967523008146532",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.6967523008146532",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.6967523008146532",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.6967523008146532",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.2156320485864542",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.2156320485864542",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.2156320485864542",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "New York",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.2156320485864542",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "New York has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "5.886541834333909",
- "national_value": "2.6837021559305736",
- "region_value": "5.886541834333909",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "10.078725800875839",
- "national_value": "1.6847888502204156",
- "region_value": "5.253371358392005",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "North Carolina",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "6.4727460376412065",
- "national_value": "1.7342704780502864",
- "region_value": "3.943501391247169",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "8.062606289064234",
- "national_value": "2.5176843149970507",
- "region_value": "4.342884914848835",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "North Carolina",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "8.489415626729931",
- "national_value": "3.3062068257654307",
- "region_value": "3.494108303925306",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "North Carolina",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "8.222708414365693",
- "national_value": "3.0259000068656716",
- "region_value": "6.177373547483146",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "North Carolina",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "7.704829909269827",
- "national_value": "3.5656963666126624",
- "region_value": "4.9652604206011715",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "9.46530851568127",
- "national_value": "5.571054487750484",
- "region_value": "4.512398753521249",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "North Carolina",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "13.538491664120471",
- "national_value": "5.815815969221436",
- "region_value": "6.483962575074571",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "15.323360951161689",
- "national_value": "7.972715209443255",
- "region_value": "6.786697541831071",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "15.227385962865583",
- "national_value": "8.36714533097982",
- "region_value": "7.870550389438764",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "12.45892129442263",
- "national_value": "10.662626695924502",
- "region_value": "7.293131701028378",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "12.692404420699212",
- "national_value": "11.980909201182696",
- "region_value": "8.453843241798953",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "12.442173131172947",
- "national_value": "10.608123300225985",
- "region_value": "10.353181175763877",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "15.016787882877317",
- "national_value": "13.542811094208",
- "region_value": "7.937538761584929",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "17.939862766214425",
- "national_value": "12.719191415297415",
- "region_value": "11.319823345006384",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "13.115028955284915",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "13.615451940045098",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "8.912031611192559",
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "North Carolina",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "6.360462509894765",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "12.359450649580037",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "6.400466224065257",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "4.0312401701818885",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "2.5347924631796657",
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "4.538890027592651",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "2.6958186874087677",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "2.065389057365728",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.949912422914558",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "1.4846286549680938",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.142834869396234",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.1539938084710997",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.340170968619291",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.3237230112196785",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "2.005474366850342",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.5631013136635183",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.202764226418512",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.0996285095367195",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.707389907184439",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "0.7749390123122512",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.466033038555315",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.2702760377083617",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.2528709460750183",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "2.816030559093715",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.530735064288205",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.2890761177978431",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.5864272689906285",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "2.0864975605108316",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.6893132794042163",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.3192106360178923",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.7871328522938743",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "2.409438413613425",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "2.135413974137771",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "3.4425208952945976",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.3475695037647846",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.3475695037647846",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.0587829321985156",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.0587829321985156",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "3.005179629972419",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "3.005179629972419",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.336167461829021",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.336167461829021",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "3.090941825884189",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "3.090941825884189",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "3.5635498357715076",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "3.5635498357715076",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "2.783665199339341",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "2.783665199339341",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.379097716977593",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.379097716977593",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "3.5496386776379794",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "3.5496386776379794",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.6988998350573112",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.6988998350573112",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.6548672946853245",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.6548672946853245",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "3.5052768341658678",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "3.5052768341658678",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "4.137391150025155",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "4.137391150025155",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "2.367358322648326",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "2.367358322648326",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "11.905269613870727",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "11.905269613870727",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "2.9005666766704823",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "2.9005666766704823",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "12.452829042084673",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "12.452829042084673",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "5.181541136045429",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "5.181541136045429",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "15.127450913987888",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "15.127450913987888",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "12.177640727903272",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "12.177640727903272",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "North Carolina",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "5.890883396822669",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "5.890883396822669",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "6.621688086882436",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "6.621688086882436",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "5.822162568115878",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "5.822162568115878",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "North Carolina",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "1.8569696016186863",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "1.8569696016186863",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "1.4479682752948473",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "1.4479682752948473",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "1.1792862406980515",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "1.1792862406980515",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.0175329294905375",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.0175329294905375",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.3877387764453717",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.3877387764453717",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.3877387764453717",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.5106510647283953",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.5106510647283953",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.5106510647283953",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.2141796394954092",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.2141796394954092",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.2141796394954092",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.2196773923025024",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.2196773923025024",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.2196773923025024",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.3670878305761078",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.3670878305761078",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.3670878305761078",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0344473373258452",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0344473373258452",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0344473373258452",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.4244779627575208",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.4244779627575208",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.4244779627575208",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.114641627926116",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.114641627926116",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.114641627926116",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.1530012825855849",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.1530012825855849",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.1530012825855849",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "North Carolina",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "North Carolina has 7 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "14.694857414720289",
- "national_value": "11.717398915456236",
- "region_value": "11.765557982649376",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "10.378844194454414",
- "national_value": "10.378844194454414",
- "region_value": "9.116557459382598",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "8.557245382658989",
- "national_value": "9.58426311998286",
- "region_value": "7.991110424469195",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "8.049105987696144",
- "national_value": "8.511935476968219",
- "region_value": "7.2303216345927765",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "7.102684788361689",
- "national_value": "7.91219972730154",
- "region_value": "7.050007413346095",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "6.064321030586548",
- "national_value": "6.4040522465371374",
- "region_value": "6.19725477545637",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "5.215303319988296",
- "national_value": "5.57261799627081",
- "region_value": "4.372879702551992",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "4.73748392406362",
- "national_value": "4.596671451155856",
- "region_value": "3.9095219051905423",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "3.754967324676986",
- "national_value": "4.534471689248122",
- "region_value": "4.111982935954425",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "2.179440217231736",
- "national_value": "4.778019873646184",
- "region_value": "4.597628916845259",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "3.801776385694768",
- "national_value": "3.940062397453282",
- "region_value": "3.3651022690130112",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.9979358231664524",
- "national_value": "3.366182006584707",
- "region_value": "3.4066910020440555",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.096582220509463",
- "national_value": "2.984187025846241",
- "region_value": "3.017709697257796",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "2.4344597079093906",
- "national_value": "2.463264084926519",
- "region_value": "2.125723447890337",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.7695343410440718",
- "national_value": "2.0734171252350273",
- "region_value": "1.9785801638602805",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.5638185106895026",
- "national_value": "2.1706895617031954",
- "region_value": "2.2462331446880675",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.367858428948407",
- "national_value": "2.029612060659673",
- "region_value": "2.174489550720086",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.870560841567938",
- "national_value": "1.7212315200834434",
- "region_value": "1.663009891818219",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.2928645551300462",
- "national_value": "1.4639104218258483",
- "region_value": "1.6729364399579305",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.282546632332478",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.0622415333678066",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.2064368955251221",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.3102912256817256",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.5432384033411504",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.0461767707190757",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.1416297470993362",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.0961335999903024",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.468431693852467",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.582745017777977",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.8087262076502963",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.5663567894161223",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "2.139213577515926",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "2.522514987583128",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.8883283483342668",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.6189260717314795",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.2439712497031148",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "2.3128051312507263",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.304994987772551",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.304994987772551",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.339405523198283",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.339405523198283",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.5783330037420358",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.5783330037420358",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.0656778578644484",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.0656778578644484",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.22955107569683",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.22955107569683",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "2.907712667840032",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "2.907712667840032",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "2.1700538108232927",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "2.1700538108232927",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.2564187862319613",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.2564187862319613",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.8239926471357615",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.8239926471357615",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.096921604061415",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.096921604061415",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "7.777745627536818",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "7.777745627536818",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "6.910620829496196",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "6.910620829496196",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "10.903074623532792",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "10.903074623532792",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "9.990425120253285",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "9.990425120253285",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "12.473806407071582",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "12.473806407071582",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "12.935803622875248",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "12.935803622875248",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "18.51273962161256",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "18.51273962161256",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "15.319737402142671",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "15.319737402142671",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "22.642179899913785",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Ohio",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "22.642179899913785",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Ohio",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "16.553296564460968",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "16.553296564460968",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "15.190644063627593",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "15.190644063627593",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "17.815685546206325",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "17.815685546206325",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "11.42544831719384",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "11.42544831719384",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "12.468631668512657",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "12.468631668512657",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "20.11832520657954",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Ohio",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "20.11832520657954",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Ohio",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "14.54204135722545",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "14.54204135722545",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Ohio",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "8.996990673411341",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "8.996990673411341",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "8.489572500227009",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "8.489572500227009",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "8.489572500227009",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Ohio",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "6.617841022929729",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "6.617841022929729",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "6.617841022929729",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "5.593340800530244",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "5.593340800530244",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "5.593340800530244",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "5.765016727218859",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "5.765016727218859",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "5.765016727218859",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "5.613393885151869",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "5.613393885151869",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "5.613393885151869",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Ohio",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "3.6891028281135467",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "3.6891028281135467",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "3.6891028281135467",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "2.5358083091588863",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "2.5358083091588863",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "2.5358083091588863",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.818731921252245",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.818731921252245",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.818731921252245",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.5686557775311873",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.5686557775311873",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.5686557775311873",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.2553253244793563",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.2553253244793563",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.2553253244793563",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.479568997517341",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.479568997517341",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.479568997517341",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "2.603278731972998",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "2.603278731972998",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "2.603278731972998",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.5590066130364209",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.5590066130364209",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.5590066130364209",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.2919456887600598",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.2919456887600598",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.2919456887600598",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.3448402851285302",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.3448402851285302",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.3448402851285302",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.3919945605533728",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.3919945605533728",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.3919945605533728",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.5376682110010722",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.5376682110010722",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.5376682110010722",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.2179718321364335",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.2179718321364335",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.2179718321364335",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.6274580383021493",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.6274580383021493",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.6274580383021493",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.2599836016207373",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.2599836016207373",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.2599836016207373",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.2599836016207373",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.3733572255850313",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.3733572255850313",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.3733572255850313",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.3733572255850313",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.7494183903233838",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.7494183903233838",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.7494183903233838",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.7494183903233838",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.6492969473466919",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.6492969473466919",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.6492969473466919",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.6492969473466919",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.6099338643267793",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.6099338643267793",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.6099338643267793",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.6099338643267793",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.747879913691857",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.747879913691857",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.747879913691857",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.747879913691857",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.075256734544713",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.075256734544713",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.075256734544713",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Ohio",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.075256734544713",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Ohio has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.0392566493937205",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.0392566493937205",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.079126706567793",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.079126706567793",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.0764070766105127",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.0764070766105127",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.2042775486794912",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.2042775486794912",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.0381523949784277",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.0381523949784277",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.0958157171812397",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.0958157171812397",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.0096525157917728",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.0096525157917728",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.1747832861013456",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.1747832861013456",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.4906763639838194",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.4906763639838194",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "1.2015780054425647",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "1.2015780054425647",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "1.781365410227841",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "1.781365410227841",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": null,
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oklahoma",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": null,
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "1.1353235543030933",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "1.1353235543030933",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "3.7525143293971213",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "3.7525143293971213",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "8.808162911891234",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "8.808162911891234",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "6.768700697945448",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "6.768700697945448",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "11.154633683730799",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oklahoma",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "11.154633683730799",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oklahoma",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "13.399259224523727",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Oklahoma",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "13.399259224523727",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Oklahoma",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "1.797059669735667",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "1.797059669735667",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "2.068498567629711",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "2.068498567629711",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "5.111111158006256",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oklahoma",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "5.111111158006256",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oklahoma",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "2.8614730980701575",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "2.8614730980701575",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "2.7261522231198",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "2.7261522231198",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "2.212443207464032",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "2.212443207464032",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "2.6025278490957415",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "2.6025278490957415",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "2.562973029702853",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "2.562973029702853",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.3946350666460572",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.3946350666460572",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.3946350666460572",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.9661323070902306",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.9661323070902306",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.9661323070902306",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.681923565035862",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.681923565035862",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.681923565035862",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "3.8508803232578743",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "3.8508803232578743",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "3.8508803232578743",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.3366923425502768",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.3366923425502768",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.3366923425502768",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.3366923425502768",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.189493095556039",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.189493095556039",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.189493095556039",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.189493095556039",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0348861096790472",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0348861096790472",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0348861096790472",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0348861096790472",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.1485267132887422",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.1485267132887422",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.1485267132887422",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.1485267132887422",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.1958184504849796",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.1958184504849796",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.1958184504849796",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.1958184504849796",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.1238821380650537",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.1238821380650537",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.1238821380650537",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oklahoma",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.1238821380650537",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Oklahoma has 12 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-03-26",
- "date_period": "All Results",
- "value": "4.042946905988021",
- "national_value": "2.055720070472593",
- "region_value": "1.9346082642356723",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2022-04-02",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.6885380112940913",
- "region_value": "1.735607696525803",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-04-09",
- "date_period": "All Results",
- "value": null,
- "national_value": "2.1742838341071806",
- "region_value": "2.339779346685215",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-04-16",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.8413286484545477",
- "region_value": "2.2017365705505694",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-04-23",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3483509328559706",
- "region_value": "1.3976302139109713",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-04-30",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4914472684711386",
- "region_value": "1.620366126199506",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-05-07",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4054487457710798",
- "region_value": "1.02337523588876",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-05-14",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.603770824840521",
- "region_value": "1.404052497833363",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-05-21",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.6151331114041896",
- "region_value": "1.3530934485015855",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.6598224284451173",
- "region_value": "1.5980644511569917",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4734515288198426",
- "region_value": "1.304159764592994",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.9124324956062713",
- "region_value": "1.3148740324694157",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3900747712132921",
- "region_value": "1.2005253184049844",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3310194816554493",
- "region_value": "1.3317717640176578",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.797445827207103",
- "region_value": "1.2442884302652466",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": null,
- "national_value": "2.265982888946997",
- "region_value": "1.4904280043213236",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": null,
- "national_value": "2.6512503036239994",
- "region_value": "1.3178248801252666",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": null,
- "national_value": "2.2782237042639117",
- "region_value": "1.2658297899360809",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.8043202465812183",
- "region_value": "1.6896104052189551",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.685820402830163",
- "region_value": "1.1254422072349564",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.6826083301683215",
- "region_value": "1.374928732448398",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": null,
- "national_value": "2.124626705610647",
- "region_value": "1.5807719236565074",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": null,
- "national_value": "2.6837021559305736",
- "region_value": "2.108492076415407",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "1.0342374612850997",
- "national_value": "1.6847888502204156",
- "region_value": "1.0856851952454023",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "1.0342374612850997",
- "national_value": "1.7342704780502864",
- "region_value": "1.0932440375081067",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "1.0360472281603779",
- "national_value": "2.5176843149970507",
- "region_value": "1.358910033206172",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.3062068257654307",
- "region_value": "1.4650795670981622",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "1.078406408980873",
- "national_value": "3.0259000068656716",
- "region_value": "1.9859157080042797",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "1.0268197753696082",
- "national_value": "3.5656963666126624",
- "region_value": "2.7614337709265864",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "1.0522851075561943",
- "national_value": "5.571054487750484",
- "region_value": "6.097735735580563",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "1.0540180561527315",
- "national_value": "5.815815969221436",
- "region_value": "5.0001498690858925",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": null,
- "national_value": "7.972715209443255",
- "region_value": "8.09420382029756",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "3.078246979242099",
- "national_value": "8.36714533097982",
- "region_value": "8.050163017475098",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "7.684366207222709",
- "national_value": "10.662626695924502",
- "region_value": "11.195951673245489",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "13.289337027101464",
- "national_value": "11.980909201182696",
- "region_value": "13.197401758568223",
- "site_details_text": "No Data",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Oregon",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "1.1404147074705264",
- "national_value": "10.608123300225985",
- "region_value": "10.5658039927109",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "17.145733365834655",
- "national_value": "13.542811094208",
- "region_value": "17.238122102927367",
- "site_details_text": "No Data",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Oregon",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "1.6604385333808414",
- "national_value": "12.719191415297415",
- "region_value": "13.183507354755639",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "8.76729473215439",
- "national_value": "11.717398915456236",
- "region_value": "12.03205661149045",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oregon",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "6.856489110871524",
- "national_value": "10.378844194454414",
- "region_value": "11.710678868118277",
- "site_details_text": "No Data",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "8.241757342984084",
- "national_value": "9.58426311998286",
- "region_value": "10.016545350386066",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oregon",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "5.227061677869278",
- "national_value": "8.511935476968219",
- "region_value": "10.438050207780924",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "4.877023993313122",
- "national_value": "7.91219972730154",
- "region_value": "9.26265262242417",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "4.224035976447043",
- "national_value": "6.4040522465371374",
- "region_value": "8.724341840620617",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "1.6790266642062968",
- "national_value": "5.57261799627081",
- "region_value": "6.716851233306635",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "2.225611008223188",
- "national_value": "4.596671451155856",
- "region_value": "6.1844918088387395",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "1.9098664788006103",
- "national_value": "4.534471689248122",
- "region_value": "5.857488855451447",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "5.113773273566875",
- "national_value": "4.778019873646184",
- "region_value": "6.159171465579225",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "5.116135171626661",
- "national_value": "3.940062397453282",
- "region_value": "5.104760625348599",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "3.0212473854026096",
- "national_value": "3.366182006584707",
- "region_value": "4.836708783229214",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "2.3627591455740067",
- "national_value": "2.984187025846241",
- "region_value": "3.6235572733843875",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "3.0265991792198297",
- "national_value": "2.463264084926519",
- "region_value": "3.4100632875166",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.5619360726567493",
- "national_value": "2.0734171252350273",
- "region_value": "2.411866913022963",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.6083765526728246",
- "national_value": "2.1706895617031954",
- "region_value": "2.271266445471554",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.7487747840476024",
- "national_value": "2.029612060659673",
- "region_value": "2.147005652039137",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "2.046534064593357",
- "national_value": "1.7212315200834434",
- "region_value": "1.9819460472081987",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.4847357176397589",
- "national_value": "1.4639104218258483",
- "region_value": "1.5419858682344478",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.4890055404128857",
- "national_value": "1.3457689462373816",
- "region_value": "1.2707146202174076",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.296908262634773",
- "national_value": "1.3444098672308302",
- "region_value": "1.443292238886326",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4600144152295942",
- "region_value": "1.3435613387545668",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4508980845678203",
- "region_value": "1.430055591418352",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3757159403094235",
- "region_value": "1.3727060659615529",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2604448744176628",
- "region_value": "1.2839751640924821",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4989526753060833",
- "region_value": "1.3607571884416894",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3481042238716148",
- "region_value": "1.3886102626022836",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3376078752006206",
- "region_value": "1.382178938433719",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3572731286449182",
- "region_value": "1.3572731286449182",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.360705677152615",
- "region_value": "1.4047044137440596",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.474803324474663",
- "region_value": "1.459326533369778",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4944211195175625",
- "region_value": "1.492965579589258",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3748941802394352",
- "region_value": "1.4157322768529863",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.3783354215594579",
- "region_value": "1.4916703045497908",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4558057901844157",
- "region_value": "1.4386947303080395",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.0321078874767924",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.0321078874767924",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.2064952426987188",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.2064952426987188",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.1386684804607632",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.1386684804607632",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.0030939787235504",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.0030939787235504",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.0338558247557526",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.0338558247557526",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.277316401828877",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.277316401828877",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.094573769235771",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.094573769235771",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.0324650905994948",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.0324650905994948",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.6425382857018964",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.6425382857018964",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "1.3010290645275318",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "1.3010290645275318",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "2.3257029874296773",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "2.3257029874296773",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "3.625940352925359",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "3.625940352925359",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "2.3811860252509534",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "2.3811860252509534",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "1.7571293428651595",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "1.7571293428651595",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "1.3130025472806515",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "1.3130025472806515",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "2.1914137827135916",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "2.1914137827135916",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "5.8693181021412535",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "5.8693181021412535",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "5.076079213671303",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "5.076079213671303",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "No Data",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Oregon",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "2.6077874032595014",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "2.6077874032595014",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "2.8031551473291287",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "2.8031551473291287",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "No Data",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "2.3630232877383577",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "2.3630232877383577",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "1.7800079730359006",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "1.7800079730359006",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "1.579515857654083",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "1.579515857654083",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "1.8807826731801052",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "1.8807826731801052",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.6536946155319874",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.6536946155319874",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.9512402364485124",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.9512402364485124",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.9512402364485124",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.447892317067319",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.447892317067319",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.447892317067319",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.4751759411660714",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.4751759411660714",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.4751759411660714",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.5732992222533138",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.5732992222533138",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.5732992222533138",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.4280232456416888",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.4280232456416888",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.4280232456416888",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.4100861812433871",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.4100861812433871",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.4100861812433871",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.1415083085193145",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.1415083085193145",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.1415083085193145",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.1041246564892582",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.1041246564892582",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.1041246564892582",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.1025520636485018",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.1025520636485018",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.1025520636485018",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.8670768904461015",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.8670768904461015",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.8670768904461015",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.2439917891454868",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.2439917891454868",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.2439917891454868",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.1120181972819938",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.1120181972819938",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.1120181972819938",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.364813554156192",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.364813554156192",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.364813554156192",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0682492727823152",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0682492727823152",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0682492727823152",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0429880386467718",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0429880386467718",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0429880386467718",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2153176703351602",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2153176703351602",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2153176703351602",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0771302489726708",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0771302489726708",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0771302489726708",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.1129525309568",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.1129525309568",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.1129525309568",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.2267609114849103",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.2267609114849103",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.2267609114849103",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.2267609114849103",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.7791352344743199",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.7791352344743199",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.7791352344743199",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.7791352344743199",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "8.109714344708797",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oregon",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "8.109714344708797",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oregon",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "8.109714344708797",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oregon",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "8.109714344708797",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "No Data",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Oregon",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.3368523721577867",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.3368523721577867",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.3368523721577867",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.3368523721577867",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.3368523721577867",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.3368523721577867",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.3368523721577867",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.3368523721577867",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "No Data",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Oregon",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Oregon",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": null,
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "No Data",
- "activity_level": "No Data",
- "activity_level_label": "No Data"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "2.825283366296353",
- "national_value": "1.685820402830163",
- "region_value": "2.5444295098770953",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "4.036958332053907",
- "national_value": "1.6826083301683215",
- "region_value": "3.092350051709369",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "3.4638701911663543",
- "national_value": "2.124626705610647",
- "region_value": "2.3234210966894278",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "1.1253799540840783",
- "national_value": "2.6837021559305736",
- "region_value": "3.5776423220748423",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "2.1750263558866556",
- "national_value": "1.6847888502204156",
- "region_value": "2.534327592334763",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "4.314434774408644",
- "national_value": "1.7342704780502864",
- "region_value": "4.314434774408644",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "4.05347045481508",
- "national_value": "2.5176843149970507",
- "region_value": "2.3209286389498636",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "4.809098546192238",
- "national_value": "3.3062068257654307",
- "region_value": "4.809098546192238",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "5.132452963717157",
- "national_value": "3.0259000068656716",
- "region_value": "5.132452963717157",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "7.881586599583403",
- "national_value": "3.5656963666126624",
- "region_value": "5.340518945858676",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "11.565705723882267",
- "national_value": "5.571054487750484",
- "region_value": "8.287580296694221",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "13.827719510082417",
- "national_value": "5.815815969221436",
- "region_value": "9.611905091332462",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "16.3487948857105",
- "national_value": "7.972715209443255",
- "region_value": "10.222280230779521",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "15.672676964003902",
- "national_value": "8.36714533097982",
- "region_value": "13.332623971930818",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "16.74321358487009",
- "national_value": "10.662626695924502",
- "region_value": "12.981677871885413",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "17.17614404911973",
- "national_value": "11.980909201182696",
- "region_value": "14.6586796823436",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "19.388928117547927",
- "national_value": "10.608123300225985",
- "region_value": "15.86594348238791",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "16.350174814589863",
- "national_value": "13.542811094208",
- "region_value": "15.40699593926659",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "15.196058579307389",
- "national_value": "12.719191415297415",
- "region_value": "13.262620401834589",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "10.24601465501025",
- "national_value": "11.717398915456236",
- "region_value": "11.352594698189726",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "11.454048850558792",
- "national_value": "10.378844194454414",
- "region_value": "11.022895792731262",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "11.805867361445742",
- "national_value": "9.58426311998286",
- "region_value": "9.775431860636818",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "4.895341814240856",
- "national_value": "8.511935476968219",
- "region_value": "9.975037191136114",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "10.151274850967656",
- "national_value": "7.91219972730154",
- "region_value": "9.243805557172777",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "5.63822110408199",
- "national_value": "6.4040522465371374",
- "region_value": "5.484335628234252",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "5.321670953442151",
- "national_value": "5.57261799627081",
- "region_value": "5.802422501646377",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "3.5558103553012503",
- "national_value": "4.596671451155856",
- "region_value": "4.92677539730301",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "2.0320733065260574",
- "national_value": "4.534471689248122",
- "region_value": "3.9249168617913623",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "5.427109781434916",
- "national_value": "4.778019873646184",
- "region_value": "4.723047307812709",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "1.8923649828714404",
- "national_value": "3.940062397453282",
- "region_value": "3.9362062091661563",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.098113985935796",
- "national_value": "3.366182006584707",
- "region_value": "3.195568317061261",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "2.2721972457999255",
- "national_value": "2.984187025846241",
- "region_value": "3.424697281051291",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "2.2515881516979053",
- "national_value": "2.463264084926519",
- "region_value": "3.320895783680351",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.6423918295625264",
- "national_value": "2.0734171252350273",
- "region_value": "2.1329436549742566",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.575279175765602",
- "national_value": "2.1706895617031954",
- "region_value": "1.9790130601465161",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.7652353842687476",
- "national_value": "2.029612060659673",
- "region_value": "1.7696449985793985",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "2.0823112802801695",
- "national_value": "1.7212315200834434",
- "region_value": "1.5359662525874158",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "0.989126644331607",
- "national_value": "1.4639104218258483",
- "region_value": "1.2897113080281324",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.160375874599106",
- "national_value": "1.3457689462373816",
- "region_value": "1.2042322642300383",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "2.3342372241235423",
- "national_value": "1.3444098672308302",
- "region_value": "1.2765690911726495",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.6708620881277454",
- "national_value": "1.4600144152295942",
- "region_value": "1.2412799008649893",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.3507965948369205",
- "national_value": "1.4508980845678203",
- "region_value": "1.3338419322872777",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.566055341314159",
- "national_value": "1.3757159403094235",
- "region_value": "1.332853355543047",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.248848266205023",
- "national_value": "1.2604448744176628",
- "region_value": "1.1731847577021368",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.0201893094295842",
- "national_value": "1.4989526753060833",
- "region_value": "1.2120785871951774",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.9599984061375446",
- "national_value": "1.3481042238716148",
- "region_value": "1.2017194573972125",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.042740133780522",
- "national_value": "1.3376078752006206",
- "region_value": "1.2074100210549727",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.6531209618383795",
- "national_value": "1.3572731286449182",
- "region_value": "1.5563930739522744",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.152294093585573",
- "national_value": "1.360705677152615",
- "region_value": "1.4210541710154538",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.369669207698407",
- "national_value": "1.474803324474663",
- "region_value": "1.6299002734223211",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "2.1753423706705384",
- "national_value": "1.4944211195175625",
- "region_value": "1.5488721770349039",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.2337795963950757",
- "national_value": "1.3748941802394352",
- "region_value": "1.477304317799994",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.4846305313513444",
- "national_value": "1.3783354215594579",
- "region_value": "1.4590872128337622",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.6829442672326236",
- "national_value": "1.4558057901844157",
- "region_value": "1.4558057901844157",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.2992542106964269",
- "national_value": "1.5069809754963082",
- "region_value": "1.3463593879088378",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.6319702109947074",
- "national_value": "1.6679622365286086",
- "region_value": "1.728070959325373",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.364984643409879",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.364984643409879",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.4347877720973634",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.4347877720973634",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.549277599904241",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.549277599904241",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.5802225287847753",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.5802225287847753",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "5.39035298541551",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "5.39035298541551",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "4.613298578771152",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "4.613298578771152",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.9499008006541425",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.9499008006541425",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.1346981566636365",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.1346981566636365",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "4.496933225893112",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "4.496933225893112",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.78919822890564",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.78919822890564",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "8.170018359887816",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "8.170018359887816",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "10.44837415956313",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "10.44837415956313",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "15.285855200270255",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "15.285855200270255",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "18.969787250300254",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "18.969787250300254",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "20.69039857566912",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "20.69039857566912",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "16.094407225196218",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "16.094407225196218",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "13.694180847727868",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "13.694180847727868",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "24.454803454998036",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Pennsylvania",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "24.454803454998036",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "15.159514709888217",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "15.159514709888217",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "6.952488557063699",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "6.952488557063699",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "5.270773809238724",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "5.270773809238724",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "7.427116295702922",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "7.427116295702922",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "5.140020499854064",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "5.140020499854064",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "3.207199709648685",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "3.207199709648685",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "2.116256572301941",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "2.116256572301941",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "3.0279266318897538",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "3.0279266318897538",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "1.6572050073043179",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "1.6572050073043179",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.8519090326834646",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.8519090326834646",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.8519090326834646",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.3597061487031965",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.3597061487031965",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.3597061487031965",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "2.467769666025035",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "2.467769666025035",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "2.467769666025035",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.4801219559298382",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.4801219559298382",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.4801219559298382",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.11728431927659",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.11728431927659",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.11728431927659",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Pennsylvania",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Pennsylvania has 5 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "7.133381230254466",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "7.133381230254466",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "7.133381230254466",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "28.875220879575",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "28.875220879575",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "28.875220879575",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "28.875220879575",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Rhode Island",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Rhode Island has 1 site(s) reporting in the past week, and 1 (100%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "28.801722987150065",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "South Carolina",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "28.801722987150065",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "South Carolina",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "7.911854566569327",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "7.911854566569327",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "21.389553812662882",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "South Carolina",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "21.389553812662882",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "South Carolina",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "7.63875644979444",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "7.63875644979444",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "5.504902618513984",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "5.504902618513984",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "7.317556332641302",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "7.317556332641302",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "3.067123603641047",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "3.067123603641047",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "5.074425447210393",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "5.074425447210393",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "5.074425447210393",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Carolina",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "South Carolina has 3 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.1097194028425517",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.2086903055962759",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.1675519627238489",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.2747575421388107",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.2029697645867032",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.1724255406831483",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.1772802375568094",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.159669744676878",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.1577459072512708",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "0.8878913633622258",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.1484488940803808",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.3023858850329508",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.2322087311793748",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.1103867503221094",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "0.9445569517491165",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.6046703151364918",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.6979176980246844",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.6272658568471663",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.1376243522207483",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.1376243522207483",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.0798861182010275",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.0798861182010275",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.6083236930051954",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.6083236930051954",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.4762542241746084",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.4762542241746084",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.491642047403828",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.491642047403828",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "2.8705465319517782",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "2.8705465319517782",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "0.9653506892888956",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "0.9653506892888956",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.189684498832279",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.189684498832279",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.2198085057304513",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.2198085057304513",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "3.2060137921543017",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "3.2060137921543017",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.300570309091315",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.300570309091315",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "5.450130221228856",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "5.450130221228856",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "3.5519679772977497",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "3.5519679772977497",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "7.332599870684823",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "7.332599870684823",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "6.4940657690554415",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "6.4940657690554415",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "16.127819032260106",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "16.127819032260106",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "7.379282998579815",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "7.379282998579815",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "9.87745392094538",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "9.87745392094538",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "13.000081702224167",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "13.000081702224167",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "11.426520959041557",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "11.426520959041557",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "12.8655785202683",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "12.8655785202683",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "6.149333222471244",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "6.149333222471244",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "12.123927762349794",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "12.123927762349794",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "9.080451832446446",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "9.080451832446446",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "10.82164863693811",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "10.82164863693811",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "12.7876652323645",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "12.7876652323645",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "9.21731719922103",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "9.21731719922103",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "4.955349879827824",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "4.955349879827824",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "4.955349879827824",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "7.983157918826819",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "7.983157918826819",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "7.983157918826819",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "6.99852119801648",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "6.99852119801648",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "6.99852119801648",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "5.582440854716941",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "5.582440854716941",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "5.582440854716941",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "6.189012171655579",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "6.189012171655579",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "6.189012171655579",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "6.363398244854393",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "6.363398244854393",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "6.363398244854393",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "3.447790642218459",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "3.447790642218459",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "3.447790642218459",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "5.175172619372772",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "5.175172619372772",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "5.175172619372772",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.6574923206483752",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.6574923206483752",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.6574923206483752",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.0100135756892947",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.0100135756892947",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.0100135756892947",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "3.0171316439708646",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "3.0171316439708646",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "3.0171316439708646",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.183458275968083",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.183458275968083",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.183458275968083",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.6215401836848664",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.6215401836848664",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.6215401836848664",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.189223674551927",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.189223674551927",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.189223674551927",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.0747057347993056",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.0747057347993056",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.0747057347993056",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.048606447502029",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.048606447502029",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.048606447502029",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.228309594449362",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.228309594449362",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.228309594449362",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0421114435242378",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0421114435242378",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0421114435242378",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0736649467090622",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0736649467090622",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0736649467090622",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.1174867884445114",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.1174867884445114",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.1174867884445114",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.1174867884445114",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.2160574742101442",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.2160574742101442",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.2160574742101442",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.2160574742101442",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0283218068887043",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0283218068887043",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0283218068887043",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0283218068887043",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.794650980218511",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.794650980218511",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.794650980218511",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.794650980218511",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.1141404250190843",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.1141404250190843",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.1141404250190843",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.1141404250190843",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.2891174387447006",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.2891174387447006",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.2891174387447006",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.2891174387447006",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "0.9502601217467526",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "0.9502601217467526",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "0.9502601217467526",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "South Dakota",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "0.9502601217467526",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "South Dakota has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.4667549400785815",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.3137289963237968",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.9588070065816172",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "2.9076982259503055",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.4533277531016502",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.4616062346949075",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.1883966827525538",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.4012171908052218",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "2.147942849495604",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.6899588397000846",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "2.0658053366236153",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "2.566745759280011",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "2.566745759280011",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.1863304678793727",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.1863304678793727",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.733624903214102",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.733624903214102",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.156681780758695",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.156681780758695",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "4.8113923293497205",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Tennessee",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "4.8113923293497205",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Tennessee",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "3.6110112151959672",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "3.6110112151959672",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "5.2082776127741806",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Tennessee",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "5.2082776127741806",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Tennessee",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.397725838536651",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.397725838536651",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "6.912615507041414",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Tennessee",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "6.912615507041414",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Tennessee",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "8.795766496233066",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "8.795766496233066",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "8.926192871157497",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "8.926192871157497",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "13.481054541708204",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "13.481054541708204",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "12.005406587738715",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "12.005406587738715",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "18.660104916605732",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "18.660104916605732",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "19.997418770669356",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "19.997418770669356",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "11.700055591550523",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "11.700055591550523",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "16.351413792599168",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "16.351413792599168",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "11.14667621139371",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "11.14667621139371",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "20.755670451963134",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Tennessee",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "20.755670451963134",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Tennessee",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "10.64031650217568",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "10.64031650217568",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "8.959802762522367",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "8.959802762522367",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "5.151672774289686",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Tennessee",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "5.151672774289686",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Tennessee",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "3.820912625852736",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "3.820912625852736",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "8.82236180378577",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "8.82236180378577",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Tennessee",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "1.2638360552740568",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "1.2638360552740568",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "1.9847433716619918",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "1.9847433716619918",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "2.4267458835326505",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "2.4267458835326505",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "1.69226723297467",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "1.69226723297467",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "1.69226723297467",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.1299981178223923",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.1299981178223923",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.1299981178223923",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.4792447784093308",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.4792447784093308",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.4792447784093308",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.6240378839339957",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.6240378839339957",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.6240378839339957",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.6746338682210502",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.6746338682210502",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.6746338682210502",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "3.6426388927160414",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "3.6426388927160414",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "3.6426388927160414",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.5803159075267894",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.5803159075267894",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.5803159075267894",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.7063803071884767",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.7063803071884767",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.7063803071884767",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.301976395476173",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.301976395476173",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.301976395476173",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.441567141969215",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.441567141969215",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.441567141969215",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.1775442263367122",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.1775442263367122",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.1775442263367122",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.9137466226880164",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.9137466226880164",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.9137466226880164",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.4205881507933076",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.4205881507933076",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.4205881507933076",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.241031536145842",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.241031536145842",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.241031536145842",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.6335978127587292",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.6335978127587292",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.6335978127587292",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.8333463094295885",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.8333463094295885",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.8333463094295885",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.6656082139780333",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.6656082139780333",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.6656082139780333",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.634271581513783",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.634271581513783",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.634271581513783",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.06119822192337",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.06119822192337",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.06119822192337",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.3045500755591575",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.3045500755591575",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.3045500755591575",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.3045500755591575",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.487859637847725",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.487859637847725",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.487859637847725",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.487859637847725",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.4354879942752463",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.4354879942752463",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.4354879942752463",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.4354879942752463",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.2466550448314155",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.2466550448314155",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.2466550448314155",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.2466550448314155",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.7266937083743166",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.7266937083743166",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.7266937083743166",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.7266937083743166",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.4213543733306753",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.4213543733306753",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.4213543733306753",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.4213543733306753",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.4523940444936096",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.4523940444936096",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.4523940444936096",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Tennessee",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.4523940444936096",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Tennessee has 4 site(s) reporting in the past week, and 1 (25%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-03-05",
- "date_period": "All Results",
- "value": "1.4494710427410251",
- "national_value": "1.7475103377485617",
- "region_value": "1.3549409284028244",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-03-12",
- "date_period": "All Results",
- "value": "4.975667051211706",
- "national_value": "2.675693408084616",
- "region_value": "1.4165577100063698",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2022-03-19",
- "date_period": "All Results",
- "value": "1.3799614543165097",
- "national_value": "1.5474885923274455",
- "region_value": "1.130758149904982",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-03-26",
- "date_period": "All Results",
- "value": "4.0778509816279565",
- "national_value": "2.055720070472593",
- "region_value": "3.9231075659694787",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2022-04-02",
- "date_period": "All Results",
- "value": "1.7243848418901746",
- "national_value": "1.6885380112940913",
- "region_value": "1.6414683260623795",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-04-09",
- "date_period": "All Results",
- "value": "1.4018629652749743",
- "national_value": "2.1742838341071806",
- "region_value": "1.5925606306818119",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-04-16",
- "date_period": "All Results",
- "value": "1.3910900091337628",
- "national_value": "1.8413286484545477",
- "region_value": "1.4074239331940275",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-04-23",
- "date_period": "All Results",
- "value": "1.5324010208313532",
- "national_value": "1.3483509328559706",
- "region_value": "1.2038815581467808",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-04-30",
- "date_period": "All Results",
- "value": "2.244017316110992",
- "national_value": "1.4914472684711386",
- "region_value": "1.248256862066513",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-05-07",
- "date_period": "All Results",
- "value": "2.08935784132067",
- "national_value": "1.4054487457710798",
- "region_value": "2.213774693617851",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-05-14",
- "date_period": "All Results",
- "value": "2.225920038031261",
- "national_value": "1.603770824840521",
- "region_value": "2.6272930987891",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-05-21",
- "date_period": "All Results",
- "value": "1.7043242406871058",
- "national_value": "1.6151331114041896",
- "region_value": "1.7238064838436258",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": "3.396942539879081",
- "national_value": "1.6598224284451173",
- "region_value": "2.233637756012857",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": "8.121168390145161",
- "national_value": "1.4734515288198426",
- "region_value": "2.1810797861808116",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": "7.564280128406088",
- "national_value": "1.9124324956062713",
- "region_value": "4.706036033028935",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": "2.4914077195977367",
- "national_value": "1.3900747712132921",
- "region_value": "2.847876725408067",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": "6.740359198311267",
- "national_value": "1.3310194816554493",
- "region_value": "2.4130779974770347",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "2.381864021419014",
- "national_value": "1.797445827207103",
- "region_value": "3.1136751685133754",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "4.166240840949719",
- "national_value": "2.265982888946997",
- "region_value": "4.493855058327775",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "3.586919821293624",
- "national_value": "2.6512503036239994",
- "region_value": "7.101660345481074",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "2.7053928964717366",
- "national_value": "2.2782237042639117",
- "region_value": "4.569047247433098",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": "1.9401477090082544",
- "national_value": "1.8043202465812183",
- "region_value": "4.127281893119541",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "2.6450938486704065",
- "national_value": "1.685820402830163",
- "region_value": "4.137109462906029",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "1.3596638387334044",
- "national_value": "1.6826083301683215",
- "region_value": "2.845086277129335",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "1.851470699992868",
- "national_value": "2.124626705610647",
- "region_value": "5.299499119809991",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "1.9285661191926051",
- "national_value": "2.6837021559305736",
- "region_value": "5.886541834333909",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "1.621096446914676",
- "national_value": "1.6847888502204156",
- "region_value": "5.253371358392005",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "2.2457472751711762",
- "national_value": "1.7342704780502864",
- "region_value": "3.943501391247169",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "1.3925026726326",
- "national_value": "2.5176843149970507",
- "region_value": "4.342884914848835",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "1.304575958182156",
- "national_value": "3.3062068257654307",
- "region_value": "3.494108303925306",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "3.6030063733933297",
- "national_value": "3.0259000068656716",
- "region_value": "6.177373547483146",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "1.1035263998561904",
- "national_value": "3.5656963666126624",
- "region_value": "4.9652604206011715",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "2.4013286902763764",
- "national_value": "5.571054487750484",
- "region_value": "4.512398753521249",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "5.534188753947476",
- "national_value": "5.815815969221436",
- "region_value": "6.483962575074571",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "6.177509514217864",
- "national_value": "7.972715209443255",
- "region_value": "6.786697541831071",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "8.15621421444199",
- "national_value": "8.36714533097982",
- "region_value": "7.870550389438764",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "8.203621019335882",
- "national_value": "10.662626695924502",
- "region_value": "7.293131701028378",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "8.858466774600341",
- "national_value": "11.980909201182696",
- "region_value": "8.453843241798953",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "15.239680875316429",
- "national_value": "10.608123300225985",
- "region_value": "10.353181175763877",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "5.080248264281606",
- "national_value": "13.542811094208",
- "region_value": "7.937538761584929",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "13.942808477153866",
- "national_value": "12.719191415297415",
- "region_value": "11.319823345006384",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "11.770725974480598",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "15.70325410700627",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "14.005120940795308",
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "11.387618825753904",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "7.600450789584848",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "3.849018340449139",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "4.76527042131562",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "2.9228472440756748",
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "2.6375603588814016",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "3.3820013321293487",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "2.357664038107042",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.145933584617138",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "1.569169315854224",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.3878763999462596",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "1.4233509260697745",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "1.546844324507808",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.662204733798604",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.614797923866806",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.244153588543587",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.0841695076009679",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.3440134688488854",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.7747635951873129",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.7702695343240116",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.585146317084126",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.4312291913372386",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.7562349365587657",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.537158289687913",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.3858966145804867",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.4296956906617855",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.3173546860977228",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.3052203239525424",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.765442858527064",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.4899619011886431",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.267651836957866",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.5101293672762264",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.511802333369211",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.6750313635583334",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.394790118615469",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.394790118615469",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.8429602558358702",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.8429602558358702",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.507662195178265",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.507662195178265",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.9763199835940015",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.9763199835940015",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "3.856375786223361",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "3.856375786223361",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "4.7436742317722675",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "4.7436742317722675",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "4.709194957136413",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "4.709194957136413",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "5.9314561343005",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "5.9314561343005",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "7.881378266726774",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "7.881378266726774",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "11.9772273599789",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "11.9772273599789",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "13.900405082731552",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "13.900405082731552",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "18.34942851541548",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "18.34942851541548",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "19.21363300216635",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "19.21363300216635",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "27.342124631316885",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Texas",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "27.342124631316885",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Texas",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "16.827609106449113",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "16.827609106449113",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "18.59066724117197",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "18.59066724117197",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "14.294294547770892",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "14.294294547770892",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "15.243858738927884",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "15.243858738927884",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "12.477776176393384",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "12.477776176393384",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "13.37849918942015",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "13.37849918942015",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Texas",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "9.242237560427592",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "9.242237560427592",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "9.58958207166215",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "9.58958207166215",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "8.292622300796715",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "8.292622300796715",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Texas",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "6.525871431881387",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "6.525871431881387",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "5.238298653783544",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "5.238298653783544",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "5.708818639023022",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "5.708818639023022",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "4.004289407721177",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "4.004289407721177",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Texas",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "2.304856928742799",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "2.304856928742799",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "2.304856928742799",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.3640965858241776",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.3640965858241776",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.3640965858241776",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.810593164944753",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.810593164944753",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.810593164944753",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.4865219034122579",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.4865219034122579",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.4865219034122579",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.3745812354495934",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.3745812354495934",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.3745812354495934",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.3905579452862353",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.3905579452862353",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.3905579452862353",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.3401361425018816",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.3401361425018816",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.3401361425018816",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.4733031265025522",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.4733031265025522",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.4733031265025522",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.5264701693873413",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.5264701693873413",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.5264701693873413",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.3583243522691797",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.3583243522691797",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.3583243522691797",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.3074822288118577",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.3074822288118577",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.3074822288118577",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.389081667227758",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.389081667227758",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.389081667227758",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.2315606049524173",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.2315606049524173",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.2315606049524173",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.3381546009492795",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.3381546009492795",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.3381546009492795",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.3557520221514332",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.3557520221514332",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.3557520221514332",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.1805458599557783",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.1805458599557783",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.1805458599557783",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2345151690150673",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2345151690150673",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2345151690150673",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.1265755876353254",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.1265755876353254",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.1265755876353254",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.446110178589917",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.446110178589917",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.446110178589917",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.271909607894503",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.271909607894503",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.271909607894503",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.271909607894503",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.3863008130510428",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.3863008130510428",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.3863008130510428",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.3863008130510428",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.1936170481904043",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.1936170481904043",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.1936170481904043",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.1936170481904043",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.2576669900719972",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.2576669900719972",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.2576669900719972",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.2576669900719972",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.4334381535023386",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.4334381535023386",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.4334381535023386",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.4334381535023386",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.2389677512823318",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.2389677512823318",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.2389677512823318",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.2389677512823318",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.4801268020788552",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.4801268020788552",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.4801268020788552",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Texas",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.4801268020788552",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Texas has 27 site(s) reporting in the past week, and 1 (4%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "2.216358031004352",
- "national_value": "3.3062068257654307",
- "region_value": "1.4650795670981622",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "2.0580426129656963",
- "national_value": "3.0259000068656716",
- "region_value": "1.9859157080042797",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "2.1571814284434763",
- "national_value": "3.5656963666126624",
- "region_value": "2.7614337709265864",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "2.0187149109485776",
- "national_value": "5.571054487750484",
- "region_value": "6.097735735580563",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "2.611976960579682",
- "national_value": "5.815815969221436",
- "region_value": "5.0001498690858925",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "5.146320824489798",
- "national_value": "7.972715209443255",
- "region_value": "8.09420382029756",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "6.840755726790089",
- "national_value": "8.36714533097982",
- "region_value": "8.050163017475098",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "8.927349778732735",
- "national_value": "10.662626695924502",
- "region_value": "11.195951673245489",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "12.59944963701656",
- "national_value": "11.980909201182696",
- "region_value": "13.197401758568223",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "15.344088032651207",
- "national_value": "10.608123300225985",
- "region_value": "10.5658039927109",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "17.886473524870823",
- "national_value": "13.542811094208",
- "region_value": "17.238122102927367",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "20.92473317623194",
- "national_value": "12.719191415297415",
- "region_value": "13.183507354755639",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Utah",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "17.2077549968728",
- "national_value": "11.717398915456236",
- "region_value": "12.03205661149045",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "19.27205758927753",
- "national_value": "10.378844194454414",
- "region_value": "11.710678868118277",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "13.7784057677997",
- "national_value": "9.58426311998286",
- "region_value": "10.016545350386066",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "14.059603452288545",
- "national_value": "8.511935476968219",
- "region_value": "10.438050207780924",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "15.51994336980751",
- "national_value": "7.91219972730154",
- "region_value": "9.26265262242417",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "9.509361396252864",
- "national_value": "6.4040522465371374",
- "region_value": "8.724341840620617",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "7.409382023128852",
- "national_value": "5.57261799627081",
- "region_value": "6.716851233306635",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "8.11549600588337",
- "national_value": "4.596671451155856",
- "region_value": "6.1844918088387395",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "6.617336594277358",
- "national_value": "4.534471689248122",
- "region_value": "5.857488855451447",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "5.987512529712255",
- "national_value": "4.778019873646184",
- "region_value": "6.159171465579225",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "3.6746158750918085",
- "national_value": "3.940062397453282",
- "region_value": "5.104760625348599",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "3.6414504364413327",
- "national_value": "3.366182006584707",
- "region_value": "4.836708783229214",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "3.50711655840803",
- "national_value": "2.984187025846241",
- "region_value": "3.6235572733843875",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "3.2181889049844523",
- "national_value": "2.463264084926519",
- "region_value": "3.4100632875166",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "3.0401852615969256",
- "national_value": "2.0734171252350273",
- "region_value": "2.411866913022963",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.519915639056114",
- "national_value": "2.1706895617031954",
- "region_value": "2.271266445471554",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.8735360177556148",
- "national_value": "2.029612060659673",
- "region_value": "2.147005652039137",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.508945372579737",
- "national_value": "1.7212315200834434",
- "region_value": "1.9819460472081987",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.2330768684564766",
- "national_value": "1.4639104218258483",
- "region_value": "1.5419858682344478",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.2278976071311785",
- "national_value": "1.3457689462373816",
- "region_value": "1.2707146202174076",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "0.9756115532419938",
- "national_value": "1.3444098672308302",
- "region_value": "1.443292238886326",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.2391599368079322",
- "national_value": "1.4600144152295942",
- "region_value": "1.3435613387545668",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "1.1099247962146053",
- "national_value": "1.4508980845678203",
- "region_value": "1.430055591418352",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.452046984797175",
- "national_value": "1.3757159403094235",
- "region_value": "1.3727060659615529",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.2158435162865042",
- "national_value": "1.2604448744176628",
- "region_value": "1.2839751640924821",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.1775221589832539",
- "national_value": "1.4989526753060833",
- "region_value": "1.3607571884416894",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.2638458987077583",
- "national_value": "1.3481042238716148",
- "region_value": "1.3886102626022836",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.4767841399954031",
- "national_value": "1.3376078752006206",
- "region_value": "1.382178938433719",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.23378817652971",
- "national_value": "1.3572731286449182",
- "region_value": "1.3572731286449182",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.3365994851964014",
- "national_value": "1.360705677152615",
- "region_value": "1.4047044137440596",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.4292389351508106",
- "national_value": "1.474803324474663",
- "region_value": "1.459326533369778",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.4297112109789847",
- "national_value": "1.4944211195175625",
- "region_value": "1.492965579589258",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.2726173873078217",
- "national_value": "1.3748941802394352",
- "region_value": "1.4157322768529863",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.2429233335508039",
- "national_value": "1.3783354215594579",
- "region_value": "1.4916703045497908",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.149497373388048",
- "national_value": "1.4558057901844157",
- "region_value": "1.4386947303080395",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.4368571136167492",
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "2.2745787534353172",
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.4902698309503215",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.4902698309503215",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.805548529299154",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.805548529299154",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.2850708982972194",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.2850708982972194",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "2.2857911223494805",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "2.2857911223494805",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "2.3836074574962876",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "2.3836074574962876",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.9289497654489698",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.9289497654489698",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.259415624640697",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.259415624640697",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.525212170604638",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.525212170604638",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "2.3361254405153984",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "2.3361254405153984",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "2.001234957698876",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "2.001234957698876",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "2.2121293352163907",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "2.2121293352163907",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "3.53368914328405",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "3.53368914328405",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "4.6475651847514134",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "4.6475651847514134",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "7.195986768000389",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "7.195986768000389",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "7.680997815581623",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "7.680997815581623",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "6.684594436698164",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "6.684594436698164",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "9.98591361497903",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "9.98591361497903",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "12.983627163399781",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "12.983627163399781",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "16.6149483039257",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "16.6149483039257",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "20.78124343408187",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Utah",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "20.78124343408187",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Utah",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "12.157597534940026",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "12.157597534940026",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "13.39194987799001",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "13.39194987799001",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "11.297000923955412",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "11.297000923955412",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "14.786432262240183",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "14.786432262240183",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "14.056012900061063",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "14.056012900061063",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "10.305826215753095",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "10.305826215753095",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "12.54220551946026",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "12.54220551946026",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Utah",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "10.740604621127904",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "10.740604621127904",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "10.740604621127904",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "8.267217897843748",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "8.267217897843748",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "8.267217897843748",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Utah",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "7.025715715850248",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "7.025715715850248",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "7.025715715850248",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "5.233243158616169",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "5.233243158616169",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "5.233243158616169",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "4.849374600065055",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "4.849374600065055",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "4.849374600065055",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "3.9615686030638666",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "3.9615686030638666",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "3.9615686030638666",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "5.077224645838096",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "5.077224645838096",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "5.077224645838096",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Utah",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.569000850893449",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.569000850893449",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.569000850893449",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.3634424874400186",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.3634424874400186",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.3634424874400186",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.8076216536697332",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.8076216536697332",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.8076216536697332",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "2.294896699900939",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "2.294896699900939",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "2.294896699900939",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "2.6150837503721984",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "2.6150837503721984",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "2.6150837503721984",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.6905046434365407",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.6905046434365407",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.6905046434365407",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.3092091078495411",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.3092091078495411",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.3092091078495411",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.2248823579419112",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.2248823579419112",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.2248823579419112",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.2337394497088798",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.2337394497088798",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.2337394497088798",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2681312011498835",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2681312011498835",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2681312011498835",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "0.8116534675645126",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "0.8116534675645126",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "0.8116534675645126",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.1710460575783905",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.1710460575783905",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.1710460575783905",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.1650563472495787",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.1650563472495787",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.1650563472495787",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.1650563472495787",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.4888011622846729",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.4888011622846729",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.4888011622846729",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.4888011622846729",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.1030615071113643",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.1030615071113643",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.1030615071113643",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.1030615071113643",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.3708596738359655",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.3708596738359655",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.3708596738359655",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.3708596738359655",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.3324909269969578",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.3324909269969578",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.3324909269969578",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.3324909269969578",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.105851638056467",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.105851638056467",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.105851638056467",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.105851638056467",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.2307046461894062",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.2307046461894062",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.2307046461894062",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Utah",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.2307046461894062",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Utah has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "12.199464667656564",
- "national_value": "3.366182006584707",
- "region_value": "3.195568317061261",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "8.815349863598325",
- "national_value": "2.984187025846241",
- "region_value": "3.424697281051291",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "4.883731466805054",
- "national_value": "2.463264084926519",
- "region_value": "3.320895783680351",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "3.4734603228736947",
- "national_value": "2.0734171252350273",
- "region_value": "2.1329436549742566",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "5.418414853036602",
- "national_value": "2.1706895617031954",
- "region_value": "1.9790130601465161",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "3.1676831756405357",
- "national_value": "2.029612060659673",
- "region_value": "1.7696449985793985",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "3.3849196574841742",
- "national_value": "1.7212315200834434",
- "region_value": "1.5359662525874158",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.0488538018291855",
- "national_value": "1.4639104218258483",
- "region_value": "1.2897113080281324",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.3720044660974267",
- "national_value": "1.3457689462373816",
- "region_value": "1.2042322642300383",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.1710986403605568",
- "national_value": "1.3444098672308302",
- "region_value": "1.2765690911726495",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.2472783566288161",
- "national_value": "1.4600144152295942",
- "region_value": "1.2412799008649893",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "2.900814085941556",
- "national_value": "1.4508980845678203",
- "region_value": "1.3338419322872777",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.1899061077217412",
- "national_value": "1.3757159403094235",
- "region_value": "1.332853355543047",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "0.9482101470666735",
- "national_value": "1.2604448744176628",
- "region_value": "1.1731847577021368",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.2090581710057229",
- "national_value": "1.4989526753060833",
- "region_value": "1.2120785871951774",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.1887412232152947",
- "national_value": "1.3481042238716148",
- "region_value": "1.2017194573972125",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "0.9890076416938504",
- "national_value": "1.3376078752006206",
- "region_value": "1.2074100210549727",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.2761108194270518",
- "national_value": "1.3572731286449182",
- "region_value": "1.5563930739522744",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.1162311809350565",
- "national_value": "1.360705677152615",
- "region_value": "1.4210541710154538",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.4520276642560914",
- "national_value": "1.474803324474663",
- "region_value": "1.6299002734223211",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.099080787088161",
- "national_value": "1.4944211195175625",
- "region_value": "1.5488721770349039",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.7757425422193063",
- "national_value": "1.3748941802394352",
- "region_value": "1.477304317799994",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.2115808482273474",
- "national_value": "1.3783354215594579",
- "region_value": "1.4590872128337622",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "2.0626688379785203",
- "national_value": "1.4558057901844157",
- "region_value": "1.4558057901844157",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.2886127909249692",
- "national_value": "1.5069809754963082",
- "region_value": "1.3463593879088378",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.4487768555460592",
- "national_value": "1.6679622365286086",
- "region_value": "1.728070959325373",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.4313273359304675",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.4313273359304675",
- "national_value": "1.4124735659205092",
- "region_value": "1.410579657228161",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "2.2771207574301187",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "2.2771207574301187",
- "national_value": "1.5166963396444775",
- "region_value": "2.07008013160522",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.6487649685930197",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.6487649685930197",
- "national_value": "1.5281570848164612",
- "region_value": "1.7153821767250916",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.0365815207107592",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.0365815207107592",
- "national_value": "1.5819294039749536",
- "region_value": "1.6627248617094288",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.8206162293642352",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.8206162293642352",
- "national_value": "1.874955688489959",
- "region_value": "2.652898446838862",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "3.62324268270861",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "3.62324268270861",
- "national_value": "1.7733722292643304",
- "region_value": "2.257979149919583",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "2.032868145453261",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "2.032868145453261",
- "national_value": "1.6044134267759724",
- "region_value": "1.6743419512166269",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.090581091222175",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.090581091222175",
- "national_value": "2.0203915110205704",
- "region_value": "1.8954899464525323",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.9442611996944752",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.9442611996944752",
- "national_value": "2.4650353047334552",
- "region_value": "3.158228462551466",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.8346770252363565",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.8346770252363565",
- "national_value": "3.5918696858161216",
- "region_value": "3.3533116693713643",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.0380103685615913",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.0380103685615913",
- "national_value": "5.432979222660528",
- "region_value": "6.960776201396387",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "3.036114545622844",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "3.036114545622844",
- "national_value": "7.246468237437615",
- "region_value": "10.44837415956313",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "5.059278626493396",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "5.059278626493396",
- "national_value": "8.20534192133349",
- "region_value": "11.148870961811465",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "5.814958124015934",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "5.814958124015934",
- "national_value": "10.602039425135374",
- "region_value": "11.280686590454536",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "10.113445790211752",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "10.113445790211752",
- "national_value": "10.589506214186358",
- "region_value": "12.549539926843345",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "9.747970557802942",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "9.747970557802942",
- "national_value": "11.524045507975387",
- "region_value": "12.995664577402232",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "10.459479061886727",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "10.459479061886727",
- "national_value": "10.852818015907875",
- "region_value": "12.443793067545563",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "17.452396118341795",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "17.452396118341795",
- "national_value": "12.78779999532718",
- "region_value": "14.433030747804567",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "17.735733715987188",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "17.735733715987188",
- "national_value": "14.722260779832",
- "region_value": "13.673389992793709",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "19.22155680107732",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "19.22155680107732",
- "national_value": "12.100626163243017",
- "region_value": "12.51849255507587",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "13.555938527767319",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "13.555938527767319",
- "national_value": "8.021246086498536",
- "region_value": "7.070105067521236",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "12.160489459041868",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "12.160489459041868",
- "national_value": "7.227147829429724",
- "region_value": "8.351500801486887",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Vermont",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "8.813852910800836",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "8.813852910800836",
- "national_value": "6.974481398020087",
- "region_value": "5.441618662353992",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "11.743529978566212",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "11.743529978566212",
- "national_value": "6.23502940898277",
- "region_value": "5.792829322349932",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "11.781204079065816",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "11.781204079065816",
- "national_value": "5.3555183545877005",
- "region_value": "5.990541484673515",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "20.735411692909302",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Vermont",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "20.735411692909302",
- "national_value": "4.667972992924666",
- "region_value": "4.2215273929396835",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "Vermont",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "8.446552259844946",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "8.446552259844946",
- "national_value": "4.224009166027878",
- "region_value": "4.9417097066052635",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "7.0791127217420895",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "7.0791127217420895",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "7.0791127217420895",
- "national_value": "3.6922156649016484",
- "region_value": "3.831862066747175",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "8.763547916666901",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "8.763547916666901",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "8.763547916666901",
- "national_value": "3.3645043501821053",
- "region_value": "2.8460339718254266",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Vermont",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "7.553727291309901",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "7.553727291309901",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "7.553727291309901",
- "national_value": "2.7796279218608295",
- "region_value": "3.441439648483893",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "4.614635354557005",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "4.614635354557005",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "4.614635354557005",
- "national_value": "2.450407627468283",
- "region_value": "1.9996172228717537",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "4.1458400526923525",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "4.1458400526923525",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "4.1458400526923525",
- "national_value": "2.3465829517674517",
- "region_value": "1.9669844859653611",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Vermont",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.088676920539457",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.088676920539457",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.088676920539457",
- "national_value": "1.9659210797997988",
- "region_value": "1.5060923097883883",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "3.0135126369901504",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "3.0135126369901504",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "3.0135126369901504",
- "national_value": "1.5818270455158574",
- "region_value": "1.4696490965047049",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.0522569497097005",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.0522569497097005",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.0522569497097005",
- "national_value": "1.5012978872107234",
- "region_value": "1.394160637176331",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.2341505004131446",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.2341505004131446",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.2341505004131446",
- "national_value": "1.4892331955311136",
- "region_value": "1.1808841343620191",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "2.1143555039494646",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "2.1143555039494646",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "2.1143555039494646",
- "national_value": "1.4678437184022384",
- "region_value": "1.2563175592970657",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.4311969268617328",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.4311969268617328",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.4311969268617328",
- "national_value": "1.4197826375446971",
- "region_value": "1.2529239582097276",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.2238986756951271",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.2238986756951271",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.2238986756951271",
- "national_value": "1.3573104344260978",
- "region_value": "1.2040652132403884",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.2441931069378618",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.2441931069378618",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.2441931069378618",
- "national_value": "1.3021818099276308",
- "region_value": "1.139307016406591",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.1545317061449647",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.1545317061449647",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.1545317061449647",
- "national_value": "1.3619947652407012",
- "region_value": "1.0852732345530698",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.1982392536110675",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.1982392536110675",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.1982392536110675",
- "national_value": "1.2628061463721076",
- "region_value": "1.1708567223775532",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.2127570868883315",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.2127570868883315",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.2127570868883315",
- "national_value": "1.2052199837702806",
- "region_value": "1.0022936753985552",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.2567278995615945",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.2567278995615945",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.2567278995615945",
- "national_value": "1.273869640381855",
- "region_value": "1.091442105643287",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.0655415135908202",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.0655415135908202",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.0655415135908202",
- "national_value": "1.2102044623079546",
- "region_value": "1.0172243565082715",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.3945456340468652",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.3945456340468652",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.3945456340468652",
- "national_value": "1.2500921185356304",
- "region_value": "1.0092997386440452",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.162177362536523",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.162177362536523",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.162177362536523",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.162177362536523",
- "national_value": "1.294713364957226",
- "region_value": "1.0860758284091467",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.2573673444857536",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.2573673444857536",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.2573673444857536",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.2573673444857536",
- "national_value": "1.2282017836939318",
- "region_value": "1.0179855046507333",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.3697011939490027",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.3697011939490027",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.3697011939490027",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.3697011939490027",
- "national_value": "1.1982482228558",
- "region_value": "1.0",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.1514514907324123",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.1514514907324123",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.1514514907324123",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.1514514907324123",
- "national_value": "1.2170584609220954",
- "region_value": "1.1129969473883872",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.1213330649221085",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.1213330649221085",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.1213330649221085",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.1213330649221085",
- "national_value": "1.1593559015340453",
- "region_value": "1.0655843529498312",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0199208409042368",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0199208409042368",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0199208409042368",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0199208409042368",
- "national_value": "1.2027558129111546",
- "region_value": "1.1783770840399317",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.1684642301988244",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.1684642301988244",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.1684642301988244",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Vermont",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.1684642301988244",
- "national_value": "1.2069717610701027",
- "region_value": "1.029665925021367",
- "site_details_text": "Vermont has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "7.534393766685985",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "3.563231083233209",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "0.9318776761967369",
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "2.193539380986826",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "2.7785376230472143",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "1.870808681696061",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "42.254655992476074",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Virginia",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "121.90763250860307",
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "Virginia",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "10.958436582820886",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Virginia",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "1.6515907149821034",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "1.6888177487118734",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "1.356204231331425",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "1.7582055053866734",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.4311062066253115",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "3.9967714571546096",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "2.245558659741319",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "1.4585657460448196",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.892336017251613",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.1820549446280708",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "1.7241889304427132",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.4755242688416297",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "1.6611515309117617",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "2.189162865732746",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.910162103818961",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.8177688035986586",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "2.2084046748969475",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "3.8428987500906566",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.7353059194375249",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "2.0901558984145594",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "2.8728483297816325",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "3.6662187589507167",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "3.360414785095873",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "2.4382663319197033",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "2.6927446202665277",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "5.830970601303233",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "3.407036190971155",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "4.029066082873583",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "5.704523575051746",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "5.704523575051746",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "4.358740194877482",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "4.358740194877482",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "5.284588624710858",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "5.284588624710858",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "0.9221302488263714",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "0.9221302488263714",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.040831921459256",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.040831921459256",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "2.2842740922762568",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "2.2842740922762568",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.9121687358339148",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.9121687358339148",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "4.73091413804497",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "4.73091413804497",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "7.57483903181152",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "7.57483903181152",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "10.799918387028953",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Virginia",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "10.799918387028953",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Virginia",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "3.541052251290459",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "3.541052251290459",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "12.999700867344057",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Virginia",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "12.999700867344057",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Virginia",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "3.0404680272994824",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "3.0404680272994824",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "12.634152310889903",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Virginia",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "12.634152310889903",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Virginia",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "9.18004811292874",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Virginia",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "9.18004811292874",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Virginia",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "19.18597738741482",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Virginia",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "19.18597738741482",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Virginia",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "11.588081082412376",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Virginia",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "11.588081082412376",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "6",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Virginia",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "5.016264900134461",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "5.016264900134461",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "4.699221467873907",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "4.699221467873907",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "3.955525024320445",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "3.955525024320445",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "5.945895203290943",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "5.945895203290943",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "3.608735175004515",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "3.608735175004515",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "4.264102770243327",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "4.264102770243327",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "5.348344321252698",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "5.348344321252698",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "6.106714445439229",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "6.106714445439229",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "3.4368637059176326",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "3.4368637059176326",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "3.4368637059176326",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "5.139169475186072",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "5.139169475186072",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "5.139169475186072",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Virginia",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "2.974285503728809",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "2.974285503728809",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "2.974285503728809",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "3.4308249269013187",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "3.4308249269013187",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "3.4308249269013187",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "3.8847629860662503",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "3.8847629860662503",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "3.8847629860662503",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "2.378902270980356",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "2.378902270980356",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "2.378902270980356",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "2.8115247595098296",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "2.8115247595098296",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "2.8115247595098296",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "2.5248711269943627",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "2.5248711269943627",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "2.5248711269943627",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.9290173124693126",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.9290173124693126",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.9290173124693126",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "2.46865834850246",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "2.46865834850246",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "2.46865834850246",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "2.1894327316294815",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "2.1894327316294815",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "2.1894327316294815",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "2.516768718446042",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "2.516768718446042",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "2.516768718446042",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "2.5203108635403106",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "2.5203108635403106",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "2.5203108635403106",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "2.541259572330339",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "2.541259572330339",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "2.541259572330339",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "2.028025191483696",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "2.028025191483696",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "2.028025191483696",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.995271693618932",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.995271693618932",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.995271693618932",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "2.028025191483696",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "2.028025191483696",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "2.028025191483696",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "3.8828107161701486",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "3.8828107161701486",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "3.8828107161701486",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "2.17515009654796",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "2.17515009654796",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "2.17515009654796",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.9696529674266958",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.9696529674266958",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.9696529674266958",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.9696529674266958",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "2.6465655476928283",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "2.6465655476928283",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "2.6465655476928283",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "2.6465655476928283",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.8995186884859738",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.8995186884859738",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.8995186884859738",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.8995186884859738",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.7620561061108273",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.7620561061108273",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.7620561061108273",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.7620561061108273",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.4972953248386767",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.4972953248386767",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.4972953248386767",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Virginia",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.4972953248386767",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "Virginia has 4 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "2.2008234305951215",
- "national_value": "1.5069809754963082",
- "region_value": "1.5073774971900575",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.1497352387123945",
- "national_value": "1.6679622365286086",
- "region_value": "2.048529935568323",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.3932671042363602",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.3932671042363602",
- "national_value": "1.4124735659205092",
- "region_value": "1.5935022321447838",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.1249420258697769",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.1249420258697769",
- "national_value": "1.5166963396444775",
- "region_value": "1.5964966557793503",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.2498258919849206",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.2498258919849206",
- "national_value": "1.5281570848164612",
- "region_value": "1.99319116499291",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.192748928151107",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.192748928151107",
- "national_value": "1.5819294039749536",
- "region_value": "1.9324888339591906",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.474457296049584",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.474457296049584",
- "national_value": "1.874955688489959",
- "region_value": "1.7220577934242014",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.159655112235624",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.159655112235624",
- "national_value": "1.7733722292643304",
- "region_value": "1.524531666200304",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.2067601905570706",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.2067601905570706",
- "national_value": "1.6044134267759724",
- "region_value": "1.5051653621280696",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.2402281885788549",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.2402281885788549",
- "national_value": "2.0203915110205704",
- "region_value": "1.931730229697986",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.2593980953137742",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.2593980953137742",
- "national_value": "2.4650353047334552",
- "region_value": "2.0915418406069612",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "2.062743021319015",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "2.062743021319015",
- "national_value": "3.5918696858161216",
- "region_value": "3.01786135413672",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "1.7343618829609764",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "1.7343618829609764",
- "national_value": "5.432979222660528",
- "region_value": "5.277033269350154",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "2.3483511275734994",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "2.3483511275734994",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "1.819782546594483",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "1.819782546594483",
- "national_value": "8.20534192133349",
- "region_value": "6.383150932521362",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "3.9819900417711684",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "3.9819900417711684",
- "national_value": "10.602039425135374",
- "region_value": "8.153198364171011",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "5.834947827860706",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Washington",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "5.834947827860706",
- "national_value": "10.589506214186358",
- "region_value": "9.395388531216843",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Washington",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "7.502573545879695",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Washington",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "7.502573545879695",
- "national_value": "11.524045507975387",
- "region_value": "10.862161579102226",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Washington",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "12.359630643757033",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Washington",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "12.359630643757033",
- "national_value": "10.852818015907875",
- "region_value": "10.866039613196634",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Washington",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "14.080306045180668",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Washington",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "14.080306045180668",
- "national_value": "12.78779999532718",
- "region_value": "13.099733913861257",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Washington",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "19.546057515783453",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Washington",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "19.546057515783453",
- "national_value": "14.722260779832",
- "region_value": "15.680322377423561",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Washington",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "9.987599615399777",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Washington",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "9.987599615399777",
- "national_value": "12.100626163243017",
- "region_value": "13.079206792806286",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Washington",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "3.6992872128842644",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "3.6992872128842644",
- "national_value": "8.021246086498536",
- "region_value": "9.989366038974708",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "3.6371026875113133",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "3.6371026875113133",
- "national_value": "7.227147829429724",
- "region_value": "8.91259527493427",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "2.802251779633045",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "2.802251779633045",
- "national_value": "6.974481398020087",
- "region_value": "7.3110384555302375",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "3.4049792737536255",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "3.4049792737536255",
- "national_value": "6.23502940898277",
- "region_value": "7.862900504189884",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "5.512264276789645",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Washington",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "5.512264276789645",
- "national_value": "5.3555183545877005",
- "region_value": "6.4131978521899935",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Washington",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "2.122999999289693",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "2.122999999289693",
- "national_value": "4.667972992924666",
- "region_value": "4.350005432132426",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "2.188492436055817",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "2.188492436055817",
- "national_value": "4.224009166027878",
- "region_value": "3.928215558361392",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "2.0741268773457744",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "2.0741268773457744",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "2.0741268773457744",
- "national_value": "3.6922156649016484",
- "region_value": "3.912869912648562",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "1.8971120121261413",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "1.8971120121261413",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "1.8971120121261413",
- "national_value": "3.3645043501821053",
- "region_value": "3.2991161964729",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "1.5629293876822055",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "1.5629293876822055",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "1.5629293876822055",
- "national_value": "2.7796279218608295",
- "region_value": "2.3034220809417896",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "1.695101725652881",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "1.695101725652881",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "1.695101725652881",
- "national_value": "2.450407627468283",
- "region_value": "2.06704222024996",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "1.5775117108822128",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "1.5775117108822128",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "1.5775117108822128",
- "national_value": "2.3465829517674517",
- "region_value": "1.9005371280482555",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "1.4430327198732633",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "1.4430327198732633",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "1.4430327198732633",
- "national_value": "1.9659210797997988",
- "region_value": "1.547222512140606",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "1.3447744581965488",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "1.3447744581965488",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "1.3447744581965488",
- "national_value": "1.5818270455158574",
- "region_value": "1.4067622031566793",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.2294538123291678",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.2294538123291678",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.2294538123291678",
- "national_value": "1.5012978872107234",
- "region_value": "1.3357653336279247",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "1.4203864296339999",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "1.4203864296339999",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "1.4203864296339999",
- "national_value": "1.4892331955311136",
- "region_value": "1.388775265717098",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "1.4493829543994803",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "1.4493829543994803",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "1.4493829543994803",
- "national_value": "1.4678437184022384",
- "region_value": "1.392287144603958",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "1.2369503109559905",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "1.2369503109559905",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "1.2369503109559905",
- "national_value": "1.4197826375446971",
- "region_value": "1.3298032665313981",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "1.350846080990185",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "1.350846080990185",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "1.350846080990185",
- "national_value": "1.3573104344260978",
- "region_value": "1.2489955948789662",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "1.2590292240863998",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "1.2590292240863998",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "1.2590292240863998",
- "national_value": "1.3021818099276308",
- "region_value": "1.1701455401885235",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.4924832827429313",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.4924832827429313",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.4924832827429313",
- "national_value": "1.3619947652407012",
- "region_value": "1.3392956654339627",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.1913311798532689",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.1913311798532689",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.1913311798532689",
- "national_value": "1.2628061463721076",
- "region_value": "1.1806883134008304",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.2005894216921547",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.2005894216921547",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.2005894216921547",
- "national_value": "1.2052199837702806",
- "region_value": "1.164122708400109",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.1570298204421712",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.1570298204421712",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.1570298204421712",
- "national_value": "1.273869640381855",
- "region_value": "1.1871014322521394",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.174443714258662",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.174443714258662",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.174443714258662",
- "national_value": "1.2102044623079546",
- "region_value": "1.0867466963405494",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.0882822049198713",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.0882822049198713",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.0882822049198713",
- "national_value": "1.2500921185356304",
- "region_value": "1.0964270655883477",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "1.0903464906775149",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "1.0903464906775149",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "1.0903464906775149",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "1.0903464906775149",
- "national_value": "1.294713364957226",
- "region_value": "1.0901750834298582",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.0716337338339672",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.0716337338339672",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.0716337338339672",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.0716337338339672",
- "national_value": "1.2282017836939318",
- "region_value": "1.0617510448701835",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.1577582858913593",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.1577582858913593",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.1577582858913593",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.1577582858913593",
- "national_value": "1.1982482228558",
- "region_value": "1.1198132316481983",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.1125316317941227",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.1125316317941227",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.1125316317941227",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.1125316317941227",
- "national_value": "1.2170584609220954",
- "region_value": "1.1125316317941227",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.0716337338339672",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.0716337338339672",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.0716337338339672",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.0716337338339672",
- "national_value": "1.1593559015340453",
- "region_value": "1.0910387481960189",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.2764840932120802",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.2764840932120802",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.2764840932120802",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.2764840932120802",
- "national_value": "1.2027558129111546",
- "region_value": "1.0882158892639806",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.2959344557806405",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.2959344557806405",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.2959344557806405",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Washington",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.2959344557806405",
- "national_value": "1.2069717610701027",
- "region_value": "1.2384414379410191",
- "site_details_text": "Washington has 29 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-05-28",
- "date_period": "All Results",
- "value": "1.6858035667848041",
- "national_value": "1.6598224284451173",
- "region_value": "2.233637756012857",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-06-04",
- "date_period": "All Results",
- "value": "1.6742291317244158",
- "national_value": "1.4734515288198426",
- "region_value": "2.1810797861808116",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-06-11",
- "date_period": "All Results",
- "value": "2.032358886866682",
- "national_value": "1.9124324956062713",
- "region_value": "4.706036033028935",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-06-18",
- "date_period": "All Results",
- "value": "2.616707751742018",
- "national_value": "1.3900747712132921",
- "region_value": "2.847876725408067",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-06-25",
- "date_period": "All Results",
- "value": "2.383642418169558",
- "national_value": "1.3310194816554493",
- "region_value": "2.4130779974770347",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-07-02",
- "date_period": "All Results",
- "value": "3.1136751685133754",
- "national_value": "1.797445827207103",
- "region_value": "3.1136751685133754",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-07-09",
- "date_period": "All Results",
- "value": "3.8348045306036873",
- "national_value": "2.265982888946997",
- "region_value": "4.493855058327775",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-07-16",
- "date_period": "All Results",
- "value": "8.44511748314292",
- "national_value": "2.6512503036239994",
- "region_value": "7.101660345481074",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "West Virginia",
- "date": "2022-07-23",
- "date_period": "All Results",
- "value": "97.42236618965998",
- "national_value": "2.2782237042639117",
- "region_value": "4.569047247433098",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "West Virginia",
- "date": "2022-07-30",
- "date_period": "All Results",
- "value": "8.242195361788344",
- "national_value": "1.8043202465812183",
- "region_value": "4.127281893119541",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "West Virginia",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "5.740206851788862",
- "national_value": "1.685820402830163",
- "region_value": "4.137109462906029",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "3.3548312392259576",
- "national_value": "1.6826083301683215",
- "region_value": "2.845086277129335",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "5.6370411601472625",
- "national_value": "2.124626705610647",
- "region_value": "5.299499119809991",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "3.7704813442651064",
- "national_value": "2.6837021559305736",
- "region_value": "5.886541834333909",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "3.684800297201474",
- "national_value": "1.6847888502204156",
- "region_value": "5.253371358392005",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "3.560752850154877",
- "national_value": "1.7342704780502864",
- "region_value": "3.943501391247169",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "1.1875532187774627",
- "national_value": "2.5176843149970507",
- "region_value": "4.342884914848835",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "1.0951394318178598",
- "national_value": "3.3062068257654307",
- "region_value": "3.494108303925306",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "1.2801846913976913",
- "national_value": "3.0259000068656716",
- "region_value": "6.177373547483146",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "3.5656963666126624",
- "region_value": "4.9652604206011715",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "0.9167021084266542",
- "national_value": "5.571054487750484",
- "region_value": "4.512398753521249",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "0.8481582300778618",
- "national_value": "5.815815969221436",
- "region_value": "6.483962575074571",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "1.4254488640369505",
- "national_value": "7.972715209443255",
- "region_value": "6.786697541831071",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "0.8699372684194724",
- "national_value": "8.36714533097982",
- "region_value": "7.870550389438764",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "1.5647500287132123",
- "national_value": "10.662626695924502",
- "region_value": "7.293131701028378",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "1.1552812507031427",
- "national_value": "11.980909201182696",
- "region_value": "8.453843241798953",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "1.9206303139966932",
- "national_value": "10.608123300225985",
- "region_value": "10.353181175763877",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "2.550613437948022",
- "national_value": "13.542811094208",
- "region_value": "7.937538761584929",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "2.962044972120814",
- "national_value": "12.719191415297415",
- "region_value": "11.319823345006384",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "2.28910972207786",
- "national_value": "11.717398915456236",
- "region_value": "9.64717202725619",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "2.476766320637234",
- "national_value": "10.378844194454414",
- "region_value": "9.90989695050213",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "24.278631598529277",
- "national_value": "9.58426311998286",
- "region_value": "10.298771794404333",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "West Virginia",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "2.9006767473337063",
- "national_value": "8.511935476968219",
- "region_value": "7.223618713038373",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "5.262283636481481",
- "national_value": "7.91219972730154",
- "region_value": "6.39968837140174",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "6.809633434497111",
- "national_value": "6.4040522465371374",
- "region_value": "5.117632599115842",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "8.858864909806892",
- "national_value": "5.57261799627081",
- "region_value": "5.203701257199738",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "West Virginia",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "3.909049856638677",
- "national_value": "4.596671451155856",
- "region_value": "3.6899694823144418",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "1.681664411634721",
- "national_value": "4.534471689248122",
- "region_value": "3.8031590933202737",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "6.864015566377832",
- "national_value": "4.778019873646184",
- "region_value": "2.9537059190646424",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "7.646636634583338",
- "national_value": "3.940062397453282",
- "region_value": "2.455378085711221",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "4.895277242904756",
- "national_value": "3.366182006584707",
- "region_value": "2.145933584617138",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "1.6098814504017616",
- "national_value": "2.984187025846241",
- "region_value": "1.7679730928467043",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "1.2197655643622893",
- "national_value": "2.463264084926519",
- "region_value": "1.416821177149097",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "3.3293074229592112",
- "national_value": "2.0734171252350273",
- "region_value": "1.7689575605090995",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "3.500242830916176",
- "national_value": "2.1706895617031954",
- "region_value": "1.646129794630643",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "2.7923613687552695",
- "national_value": "2.029612060659673",
- "region_value": "1.7044528502811869",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "1.5400250538236397",
- "national_value": "1.7212315200834434",
- "region_value": "1.6324369826538307",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "1.2078813179771668",
- "national_value": "1.4639104218258483",
- "region_value": "1.2976058040624139",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "2.3572870643233474",
- "national_value": "1.3457689462373816",
- "region_value": "1.2474184770663992",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "1.9831581793979107",
- "national_value": "1.3444098672308302",
- "region_value": "1.2798483212359275",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "2.134925375286539",
- "national_value": "1.4600144152295942",
- "region_value": "1.5871837394057324",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "2.1237527568960566",
- "national_value": "1.4508980845678203",
- "region_value": "1.6111800312169051",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.835736867747959",
- "national_value": "1.3757159403094235",
- "region_value": "1.6780702871685935",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.1114520732027116",
- "national_value": "1.2604448744176628",
- "region_value": "1.4150406611946886",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.5030386452448363",
- "national_value": "1.4989526753060833",
- "region_value": "1.6384237785166018",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.5176854209254347",
- "national_value": "1.3481042238716148",
- "region_value": "1.5128638702326445",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.0925384081934124",
- "national_value": "1.3376078752006206",
- "region_value": "1.440432957082773",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.3200472964586543",
- "national_value": "1.3572731286449182",
- "region_value": "1.427164552508549",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "2.075013102811749",
- "national_value": "1.360705677152615",
- "region_value": "1.3612316854541038",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "3.834543477321665",
- "national_value": "1.474803324474663",
- "region_value": "1.4721293190050546",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "4.449632765821802",
- "national_value": "1.4944211195175625",
- "region_value": "1.8365069410556472",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.0901886587662066",
- "national_value": "1.3748941802394352",
- "region_value": "1.53929576081736",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "4.020844268170359",
- "national_value": "1.3783354215594579",
- "region_value": "1.5013604733065058",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "2.443998209457715",
- "national_value": "1.4558057901844157",
- "region_value": "1.5673206331503946",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.2202223065733575",
- "national_value": "1.5069809754963082",
- "region_value": "1.7218780384042198",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.3289334735483211",
- "national_value": "1.6679622365286086",
- "region_value": "1.916743164188736",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.096826846913987",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.096826846913987",
- "national_value": "1.4124735659205092",
- "region_value": "1.491889631357381",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.0442940299760393",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.0442940299760393",
- "national_value": "1.5166963396444775",
- "region_value": "1.7594174630248895",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "2.338254924601201",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "2.338254924601201",
- "national_value": "1.5281570848164612",
- "region_value": "1.6897317625805113",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "0.9491056591587033",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "0.9491056591587033",
- "national_value": "1.5819294039749536",
- "region_value": "1.8555444068197047",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "0.902678145316864",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "0.902678145316864",
- "national_value": "1.874955688489959",
- "region_value": "2.441356083609127",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "0.9414710087370886",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "0.9414710087370886",
- "national_value": "1.7733722292643304",
- "region_value": "2.5695336352227622",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "0.9706673278774876",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "0.9706673278774876",
- "national_value": "1.6044134267759724",
- "region_value": "2.72681413518905",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.189107246514948",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.189107246514948",
- "national_value": "2.0203915110205704",
- "region_value": "3.313562335472409",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.9402725163453254",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.9402725163453254",
- "national_value": "2.4650353047334552",
- "region_value": "4.221850573777729",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.008283514018627",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.008283514018627",
- "national_value": "3.5918696858161216",
- "region_value": "5.876221028359582",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "3.717887409645038",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "3.717887409645038",
- "national_value": "5.432979222660528",
- "region_value": "8.816584489369076",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "3.0058907965358155",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "3.0058907965358155",
- "national_value": "7.246468237437615",
- "region_value": "10.706355580514858",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "2.0972533046003115",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "2.0972533046003115",
- "national_value": "8.20534192133349",
- "region_value": "10.605578719580407",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "15.048902589497224",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "15.048902589497224",
- "national_value": "10.602039425135374",
- "region_value": "13.50814389901629",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "3.085302979321033",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "3.085302979321033",
- "national_value": "10.589506214186358",
- "region_value": "11.37053826070872",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "2.318192715033904",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "2.318192715033904",
- "national_value": "11.524045507975387",
- "region_value": "12.307401624554126",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "1.952846914654725",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "1.952846914654725",
- "national_value": "10.852818015907875",
- "region_value": "11.437814265494623",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "8.00112764057447",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "West Virginia",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "8.00112764057447",
- "national_value": "12.78779999532718",
- "region_value": "11.511046908629387",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "West Virginia",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "5.410117524728575",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "5.410117524728575",
- "national_value": "14.722260779832",
- "region_value": "12.907591996953762",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "74.23661881610474",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "West Virginia",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "74.23661881610474",
- "national_value": "12.100626163243017",
- "region_value": "9.229033185685232",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "10",
- "activity_level_label": "Very High"
- },
- {
- "State": "West Virginia",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "16.9073613136411",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "West Virginia",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "16.9073613136411",
- "national_value": "8.021246086498536",
- "region_value": "7.053315903000095",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "West Virginia",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "29.636230280158436",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "West Virginia",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "29.636230280158436",
- "national_value": "7.227147829429724",
- "region_value": "6.040439002123959",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "9",
- "activity_level_label": "Very High"
- },
- {
- "State": "West Virginia",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "14.204895672331116",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "West Virginia",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "14.204895672331116",
- "national_value": "6.974481398020087",
- "region_value": "6.9759777639282365",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "West Virginia",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "2.9279959977440484",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "2.9279959977440484",
- "national_value": "6.23502940898277",
- "region_value": "4.436859229517411",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "8.698654125810553",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "West Virginia",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "8.698654125810553",
- "national_value": "5.3555183545877005",
- "region_value": "3.8586271068110243",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "West Virginia",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "4.055122386053426",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "4.055122386053426",
- "national_value": "4.667972992924666",
- "region_value": "3.478351740903994",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "5.068346145420111",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "5.068346145420111",
- "national_value": "4.224009166027878",
- "region_value": "3.6245913827875356",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "5.284758236118819",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "5.284758236118819",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "5.284758236118819",
- "national_value": "3.6922156649016484",
- "region_value": "2.9789442555730896",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "5.822544241281049",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "5.822544241281049",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "5.822544241281049",
- "national_value": "3.3645043501821053",
- "region_value": "2.810807168184516",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "3.376675398745421",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "3.376675398745421",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "3.376675398745421",
- "national_value": "2.7796279218608295",
- "region_value": "2.0883565957835475",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "2.268019816577883",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "2.268019816577883",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "2.268019816577883",
- "national_value": "2.450407627468283",
- "region_value": "1.8238718920934862",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "5.9190513977177375",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "5.9190513977177375",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "5.9190513977177375",
- "national_value": "2.3465829517674517",
- "region_value": "1.8461128506166427",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "6.410717552544147",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "6.410717552544147",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "6.410717552544147",
- "national_value": "1.9659210797997988",
- "region_value": "1.802711217260321",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "4.207345633771883",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "4.207345633771883",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "4.207345633771883",
- "national_value": "1.5818270455158574",
- "region_value": "1.5955682327487097",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.7229787671750605",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.7229787671750605",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.7229787671750605",
- "national_value": "1.5012978872107234",
- "region_value": "1.4967876270115679",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "3.0807871002796134",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "3.0807871002796134",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "3.0807871002796134",
- "national_value": "1.4892331955311136",
- "region_value": "1.420886513729169",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "2.2764722732510037",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "2.2764722732510037",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "2.2764722732510037",
- "national_value": "1.4678437184022384",
- "region_value": "1.3922913216639992",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "2.0777025676209817",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "2.0777025676209817",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "2.0777025676209817",
- "national_value": "1.4197826375446971",
- "region_value": "1.3993767200973406",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "2.152160625271131",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "2.152160625271131",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "2.152160625271131",
- "national_value": "1.3573104344260978",
- "region_value": "1.424007935467175",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "2.2008635631473883",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "2.2008635631473883",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "2.2008635631473883",
- "national_value": "1.3021818099276308",
- "region_value": "1.3898981238448256",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "1.5068636335946615",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "1.5068636335946615",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "1.5068636335946615",
- "national_value": "1.3619947652407012",
- "region_value": "1.350691831910062",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "1.5412658373089023",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "1.5412658373089023",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "1.5412658373089023",
- "national_value": "1.2628061463721076",
- "region_value": "1.3687824297567461",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "1.2617906235084808",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "1.2617906235084808",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "1.2617906235084808",
- "national_value": "1.2052199837702806",
- "region_value": "1.2764418693218742",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "1.3955252065713277",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "1.3955252065713277",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "1.3955252065713277",
- "national_value": "1.273869640381855",
- "region_value": "1.2772811286547057",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "1.8944179536638082",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "1.8944179536638082",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "1.8944179536638082",
- "national_value": "1.2102044623079546",
- "region_value": "1.2908812433501369",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "1.1446315741961304",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "1.1446315741961304",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "1.1446315741961304",
- "national_value": "1.2500921185356304",
- "region_value": "1.241064503430851",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "2.8312975023506373",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "2.8312975023506373",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "2.8312975023506373",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "2.8312975023506373",
- "national_value": "1.294713364957226",
- "region_value": "1.3463823765011418",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "1.1588604982401307",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "1.1588604982401307",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "1.1588604982401307",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "1.1588604982401307",
- "national_value": "1.2282017836939318",
- "region_value": "1.3172341934886198",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "1.0830765920905792",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "1.0830765920905792",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "1.0830765920905792",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "1.0830765920905792",
- "national_value": "1.1982482228558",
- "region_value": "1.2097715892054663",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "1.0395061274437234",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "1.0395061274437234",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "1.0395061274437234",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "1.0395061274437234",
- "national_value": "1.2170584609220954",
- "region_value": "1.1633842586760366",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.1618693916056284",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.1618693916056284",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.1618693916056284",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.1618693916056284",
- "national_value": "1.1593559015340453",
- "region_value": "1.2456939386736106",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.3742942067811696",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.3742942067811696",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.3742942067811696",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.3742942067811696",
- "national_value": "1.2027558129111546",
- "region_value": "1.2251381253577311",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "West Virginia",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.0",
- "national_value": "1.2069717610701027",
- "region_value": "1.2196095353763223",
- "site_details_text": "West Virginia has 13 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-08-06",
- "date_period": "All Results",
- "value": "0.9970461073765806",
- "national_value": "1.685820402830163",
- "region_value": "1.5432430534896904",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-08-13",
- "date_period": "All Results",
- "value": "1.1785067129677618",
- "national_value": "1.6826083301683215",
- "region_value": "2.227721558683385",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-08-20",
- "date_period": "All Results",
- "value": "0.9846069977954464",
- "national_value": "2.124626705610647",
- "region_value": "2.6772574795689947",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-08-27",
- "date_period": "All Results",
- "value": "0.977146364620638",
- "national_value": "2.6837021559305736",
- "region_value": "2.2459750305475423",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-09-03",
- "date_period": "All Results",
- "value": "1.1179783560917085",
- "national_value": "1.6847888502204156",
- "region_value": "2.0098682272334982",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-09-10",
- "date_period": "All Results",
- "value": "5.4011186826158655",
- "national_value": "1.7342704780502864",
- "region_value": "3.9445583194788516",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2022-09-17",
- "date_period": "All Results",
- "value": "7.202740949632119",
- "national_value": "2.5176843149970507",
- "region_value": "4.777028045244008",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2022-09-24",
- "date_period": "All Results",
- "value": "5.357915773304174",
- "national_value": "3.3062068257654307",
- "region_value": "5.579833052034854",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2022-10-01",
- "date_period": "All Results",
- "value": "4.110705250965262",
- "national_value": "3.0259000068656716",
- "region_value": "4.855866526400565",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2022-10-08",
- "date_period": "All Results",
- "value": "3.16718211647866",
- "national_value": "3.5656963666126624",
- "region_value": "4.350497036950614",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-10-15",
- "date_period": "All Results",
- "value": "2.9147494607457514",
- "national_value": "5.571054487750484",
- "region_value": "4.675875457493486",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-10-22",
- "date_period": "All Results",
- "value": "2.7920212973702685",
- "national_value": "5.815815969221436",
- "region_value": "4.162465176566722",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-10-29",
- "date_period": "All Results",
- "value": "3.3082557574363527",
- "national_value": "7.972715209443255",
- "region_value": "6.9378556039273525",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-11-05",
- "date_period": "All Results",
- "value": "3.4585937049241524",
- "national_value": "8.36714533097982",
- "region_value": "8.643754406068942",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-11-12",
- "date_period": "All Results",
- "value": "3.2726135107613215",
- "national_value": "10.662626695924502",
- "region_value": "11.607854304844885",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-11-19",
- "date_period": "All Results",
- "value": "5.357211316159927",
- "national_value": "11.980909201182696",
- "region_value": "9.078836860825643",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2022-11-26",
- "date_period": "All Results",
- "value": "9.117633485662036",
- "national_value": "10.608123300225985",
- "region_value": "10.694056423978786",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Wisconsin",
- "date": "2022-12-03",
- "date_period": "All Results",
- "value": "18.185996637251037",
- "national_value": "13.542811094208",
- "region_value": "14.554436713539129",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Wisconsin",
- "date": "2022-12-10",
- "date_period": "All Results",
- "value": "6.638430784256917",
- "national_value": "12.719191415297415",
- "region_value": "11.297450165477272",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2022-12-17",
- "date_period": "All Results",
- "value": "8.954480511334083",
- "national_value": "11.717398915456236",
- "region_value": "11.765557982649376",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Wisconsin",
- "date": "2022-12-24",
- "date_period": "All Results",
- "value": "3.1933256456528216",
- "national_value": "10.378844194454414",
- "region_value": "9.116557459382598",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2022-12-31",
- "date_period": "All Results",
- "value": "2.043294844958852",
- "national_value": "9.58426311998286",
- "region_value": "7.991110424469195",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-01-07",
- "date_period": "All Results",
- "value": "1.8849343320888041",
- "national_value": "8.511935476968219",
- "region_value": "7.2303216345927765",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-01-14",
- "date_period": "All Results",
- "value": "1.6513987761532862",
- "national_value": "7.91219972730154",
- "region_value": "7.050007413346095",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-01-21",
- "date_period": "All Results",
- "value": "1.9224801403446057",
- "national_value": "6.4040522465371374",
- "region_value": "6.19725477545637",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-01-28",
- "date_period": "All Results",
- "value": "1.6459085161777571",
- "national_value": "5.57261799627081",
- "region_value": "4.372879702551992",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-02-04",
- "date_period": "All Results",
- "value": "1.2855348257461343",
- "national_value": "4.596671451155856",
- "region_value": "3.9095219051905423",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-02-11",
- "date_period": "All Results",
- "value": "1.5089040765511248",
- "national_value": "4.534471689248122",
- "region_value": "4.111982935954425",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-02-18",
- "date_period": "All Results",
- "value": "1.8862955608394731",
- "national_value": "4.778019873646184",
- "region_value": "4.597628916845259",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-02-25",
- "date_period": "All Results",
- "value": "1.535902970405139",
- "national_value": "3.940062397453282",
- "region_value": "3.3651022690130112",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-03-04",
- "date_period": "All Results",
- "value": "2.0526507582402003",
- "national_value": "3.366182006584707",
- "region_value": "3.4066910020440555",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-03-11",
- "date_period": "All Results",
- "value": "2.3554377617608067",
- "national_value": "2.984187025846241",
- "region_value": "3.017709697257796",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-03-18",
- "date_period": "All Results",
- "value": "2.9061732922229826",
- "national_value": "2.463264084926519",
- "region_value": "2.125723447890337",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-03-25",
- "date_period": "All Results",
- "value": "3.0337703720858995",
- "national_value": "2.0734171252350273",
- "region_value": "1.9785801638602805",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-04-01",
- "date_period": "All Results",
- "value": "4.937795692526745",
- "national_value": "2.1706895617031954",
- "region_value": "2.2462331446880675",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2023-04-08",
- "date_period": "All Results",
- "value": "4.559667004318256",
- "national_value": "2.029612060659673",
- "region_value": "2.174489550720086",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2023-04-15",
- "date_period": "All Results",
- "value": "3.187690596159848",
- "national_value": "1.7212315200834434",
- "region_value": "1.663009891818219",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-04-22",
- "date_period": "All Results",
- "value": "3.407197899450561",
- "national_value": "1.4639104218258483",
- "region_value": "1.6729364399579305",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-04-29",
- "date_period": "All Results",
- "value": "2.5988281536822053",
- "national_value": "1.3457689462373816",
- "region_value": "1.436457243690088",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-05-06",
- "date_period": "All Results",
- "value": "2.666918686971959",
- "national_value": "1.3444098672308302",
- "region_value": "1.3783043723054536",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-05-13",
- "date_period": "All Results",
- "value": "2.644876211650424",
- "national_value": "1.4600144152295942",
- "region_value": "1.47522006453854",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-05-20",
- "date_period": "All Results",
- "value": "2.379690885524986",
- "national_value": "1.4508980845678203",
- "region_value": "1.3687817858786133",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-05-27",
- "date_period": "All Results",
- "value": "1.9280475311035683",
- "national_value": "1.3757159403094235",
- "region_value": "1.316665558505875",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-06-03",
- "date_period": "All Results",
- "value": "1.8789903263848178",
- "national_value": "1.2604448744176628",
- "region_value": "1.1707940918471251",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-06-10",
- "date_period": "All Results",
- "value": "1.4970710543778536",
- "national_value": "1.4989526753060833",
- "region_value": "1.7182192691964007",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-06-17",
- "date_period": "All Results",
- "value": "1.3187317268175263",
- "national_value": "1.3481042238716148",
- "region_value": "1.2199240072178712",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-06-24",
- "date_period": "All Results",
- "value": "1.6622310609206263",
- "national_value": "1.3376078752006206",
- "region_value": "1.285060162323081",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-07-01",
- "date_period": "All Results",
- "value": "1.2088953143443777",
- "national_value": "1.3572731286449182",
- "region_value": "1.250255154463039",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-07-08",
- "date_period": "All Results",
- "value": "1.262404588863474",
- "national_value": "1.360705677152615",
- "region_value": "1.3243686673163402",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-07-15",
- "date_period": "All Results",
- "value": "1.6757469594199725",
- "national_value": "1.474803324474663",
- "region_value": "1.417365978334327",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-07-22",
- "date_period": "All Results",
- "value": "1.385321673164019",
- "national_value": "1.4944211195175625",
- "region_value": "1.3345357206528279",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-07-29",
- "date_period": "All Results",
- "value": "1.464020319474729",
- "national_value": "1.3748941802394352",
- "region_value": "1.1820845826471076",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-08-05",
- "date_period": "All Results",
- "value": "1.3937464388188752",
- "national_value": "1.3783354215594579",
- "region_value": "1.2477752937977193",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-08-12",
- "date_period": "All Results",
- "value": "1.395082193098029",
- "national_value": "1.4558057901844157",
- "region_value": "1.3993261663698415",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-08-19",
- "date_period": "All Results",
- "value": "1.6676080159754143",
- "national_value": "1.5069809754963082",
- "region_value": "1.4565269883231733",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-08-26",
- "date_period": "All Results",
- "value": "1.3769072374712295",
- "national_value": "1.6679622365286086",
- "region_value": "1.5128733856272107",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-02",
- "date_period": "All Results",
- "value": "1.1458544592620332",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-02",
- "date_period": "1 Year",
- "value": "1.1458544592620332",
- "national_value": "1.4124735659205092",
- "region_value": "1.2652765331061808",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-09",
- "date_period": "All Results",
- "value": "1.1146154941039264",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-09",
- "date_period": "1 Year",
- "value": "1.1146154941039264",
- "national_value": "1.5166963396444775",
- "region_value": "1.1700249931985254",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-16",
- "date_period": "All Results",
- "value": "1.1175687119778792",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-16",
- "date_period": "1 Year",
- "value": "1.1175687119778792",
- "national_value": "1.5281570848164612",
- "region_value": "1.3323465358833293",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-23",
- "date_period": "1 Year",
- "value": "1.1669832411048837",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-23",
- "date_period": "All Results",
- "value": "1.1669832411048837",
- "national_value": "1.5819294039749536",
- "region_value": "1.2921550795247154",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-30",
- "date_period": "All Results",
- "value": "1.7004957166080379",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-09-30",
- "date_period": "1 Year",
- "value": "1.7004957166080379",
- "national_value": "1.874955688489959",
- "region_value": "1.5748913858019848",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-10-07",
- "date_period": "All Results",
- "value": "1.1809962271339938",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-10-07",
- "date_period": "1 Year",
- "value": "1.1809962271339938",
- "national_value": "1.7733722292643304",
- "region_value": "1.3984776910741725",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-10-14",
- "date_period": "All Results",
- "value": "1.1293472714847648",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-10-14",
- "date_period": "1 Year",
- "value": "1.1293472714847648",
- "national_value": "1.6044134267759724",
- "region_value": "1.2780421557230743",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-10-21",
- "date_period": "1 Year",
- "value": "1.7770748477569467",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-10-21",
- "date_period": "All Results",
- "value": "1.7770748477569467",
- "national_value": "2.0203915110205704",
- "region_value": "1.637111478623947",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-10-28",
- "date_period": "All Results",
- "value": "1.5186028202389354",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-10-28",
- "date_period": "1 Year",
- "value": "1.5186028202389354",
- "national_value": "2.4650353047334552",
- "region_value": "1.911569817366281",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-11-04",
- "date_period": "1 Year",
- "value": "1.3636045794801062",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-11-04",
- "date_period": "All Results",
- "value": "1.3636045794801062",
- "national_value": "3.5918696858161216",
- "region_value": "2.6483269561946603",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-11-11",
- "date_period": "1 Year",
- "value": "1.3603195460718567",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-11-11",
- "date_period": "All Results",
- "value": "1.3603195460718567",
- "national_value": "5.432979222660528",
- "region_value": "2.896719261347284",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "1.3056914603712546",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "1.3056914603712546",
- "national_value": "7.246468237437615",
- "region_value": "4.7898481691704875",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": "1.1602529988803032",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-11-25",
- "date_period": "All Results",
- "value": "1.1602529988803032",
- "national_value": "8.20534192133349",
- "region_value": "5.181108037621412",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-02",
- "date_period": "1 Year",
- "value": "1.1182137583897536",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-02",
- "date_period": "All Results",
- "value": "1.1182137583897536",
- "national_value": "10.602039425135374",
- "region_value": "10.418289062667263",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-09",
- "date_period": "All Results",
- "value": "2.173422050835172",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-09",
- "date_period": "1 Year",
- "value": "2.173422050835172",
- "national_value": "10.589506214186358",
- "region_value": "9.288345483424116",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-16",
- "date_period": "1 Year",
- "value": "5.523760223051193",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-16",
- "date_period": "All Results",
- "value": "5.523760223051193",
- "national_value": "11.524045507975387",
- "region_value": "10.578085974383011",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-23",
- "date_period": "All Results",
- "value": "8.555697497558793",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-23",
- "date_period": "1 Year",
- "value": "8.555697497558793",
- "national_value": "10.852818015907875",
- "region_value": "9.679127265062005",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "5",
- "activity_level_label": "Moderate"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-30",
- "date_period": "1 Year",
- "value": "6.983132366421393",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2023-12-30",
- "date_period": "All Results",
- "value": "6.983132366421393",
- "national_value": "12.78779999532718",
- "region_value": "11.370078218319659",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-01-06",
- "date_period": "1 Year",
- "value": "15.175174558808926",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Wisconsin",
- "date": "2024-01-06",
- "date_period": "All Results",
- "value": "15.175174558808926",
- "national_value": "14.722260779832",
- "region_value": "16.2514194606926",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "8",
- "activity_level_label": "High"
- },
- {
- "State": "Wisconsin",
- "date": "2024-01-13",
- "date_period": "All Results",
- "value": "13.415332883222261",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Wisconsin",
- "date": "2024-01-13",
- "date_period": "1 Year",
- "value": "13.415332883222261",
- "national_value": "12.100626163243017",
- "region_value": "12.72186886381468",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "7",
- "activity_level_label": "High"
- },
- {
- "State": "Wisconsin",
- "date": "2024-01-20",
- "date_period": "All Results",
- "value": "5.761381611677824",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-01-20",
- "date_period": "1 Year",
- "value": "5.761381611677824",
- "national_value": "8.021246086498536",
- "region_value": "8.738249316319065",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-01-27",
- "date_period": "All Results",
- "value": "6.960109654687909",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-01-27",
- "date_period": "1 Year",
- "value": "6.960109654687909",
- "national_value": "7.227147829429724",
- "region_value": "7.805304727562292",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-02-03",
- "date_period": "1 Year",
- "value": "6.337148307703125",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-02-03",
- "date_period": "All Results",
- "value": "6.337148307703125",
- "national_value": "6.974481398020087",
- "region_value": "7.208842310348334",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-02-10",
- "date_period": "All Results",
- "value": "4.066845339587868",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-02-10",
- "date_period": "1 Year",
- "value": "4.066845339587868",
- "national_value": "6.23502940898277",
- "region_value": "6.682036963836458",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-02-17",
- "date_period": "1 Year",
- "value": "2.8899627308948825",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-02-17",
- "date_period": "All Results",
- "value": "2.8899627308948825",
- "national_value": "5.3555183545877005",
- "region_value": "5.876130654690499",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-02-24",
- "date_period": "1 Year",
- "value": "2.454218039988196",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-02-24",
- "date_period": "All Results",
- "value": "2.454218039988196",
- "national_value": "4.667972992924666",
- "region_value": "5.74224892025983",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-02",
- "date_period": "1 Year",
- "value": "2.426272961446675",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-02",
- "date_period": "All Results",
- "value": "2.426272961446675",
- "national_value": "4.224009166027878",
- "region_value": "5.762611234664586",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-09",
- "date_period": "All Results",
- "value": "2.082919489530611",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-09",
- "date_period": "1 Year",
- "value": "2.082919489530611",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-09",
- "date_period": "6 Months",
- "value": "2.082919489530611",
- "national_value": "3.6922156649016484",
- "region_value": "4.4537958216416005",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-16",
- "date_period": "All Results",
- "value": "2.224072670726828",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-16",
- "date_period": "6 Months",
- "value": "2.224072670726828",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-16",
- "date_period": "1 Year",
- "value": "2.224072670726828",
- "national_value": "3.3645043501821053",
- "region_value": "4.296151318500261",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-23",
- "date_period": "1 Year",
- "value": "2.4664897660743823",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-23",
- "date_period": "6 Months",
- "value": "2.4664897660743823",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-23",
- "date_period": "All Results",
- "value": "2.4664897660743823",
- "national_value": "2.7796279218608295",
- "region_value": "4.139734939150395",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-30",
- "date_period": "All Results",
- "value": "3.0221099701089487",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-30",
- "date_period": "6 Months",
- "value": "3.0221099701089487",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-03-30",
- "date_period": "1 Year",
- "value": "3.0221099701089487",
- "national_value": "2.450407627468283",
- "region_value": "3.9629547564800105",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-06",
- "date_period": "6 Months",
- "value": "6.659186241079954",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-06",
- "date_period": "All Results",
- "value": "6.659186241079954",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-06",
- "date_period": "1 Year",
- "value": "6.659186241079954",
- "national_value": "2.3465829517674517",
- "region_value": "3.512361572253283",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-13",
- "date_period": "1 Year",
- "value": "4.5414911435468905",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-13",
- "date_period": "6 Months",
- "value": "4.5414911435468905",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-13",
- "date_period": "All Results",
- "value": "4.5414911435468905",
- "national_value": "1.9659210797997988",
- "region_value": "3.084005158991979",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-20",
- "date_period": "All Results",
- "value": "3.4998618517546776",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-20",
- "date_period": "1 Year",
- "value": "3.4998618517546776",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-20",
- "date_period": "6 Months",
- "value": "3.4998618517546776",
- "national_value": "1.5818270455158574",
- "region_value": "1.9215800902539262",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-27",
- "date_period": "1 Year",
- "value": "1.936140829630933",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-27",
- "date_period": "6 Months",
- "value": "1.936140829630933",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-04-27",
- "date_period": "All Results",
- "value": "1.936140829630933",
- "national_value": "1.5012978872107234",
- "region_value": "1.8043069335136228",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-04",
- "date_period": "1 Year",
- "value": "2.6592057946754006",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-04",
- "date_period": "6 Months",
- "value": "2.6592057946754006",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-04",
- "date_period": "All Results",
- "value": "2.6592057946754006",
- "national_value": "1.4892331955311136",
- "region_value": "2.0654155362522566",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-11",
- "date_period": "6 Months",
- "value": "4.013437382453686",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-11",
- "date_period": "All Results",
- "value": "4.013437382453686",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-11",
- "date_period": "1 Year",
- "value": "4.013437382453686",
- "national_value": "1.4678437184022384",
- "region_value": "1.8545519895438431",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-18",
- "date_period": "All Results",
- "value": "2.9269151276850742",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-18",
- "date_period": "1 Year",
- "value": "2.9269151276850742",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-18",
- "date_period": "6 Months",
- "value": "2.9269151276850742",
- "national_value": "1.4197826375446971",
- "region_value": "1.646130220463346",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-25",
- "date_period": "6 Months",
- "value": "3.21572821183787",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-25",
- "date_period": "1 Year",
- "value": "3.21572821183787",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-05-25",
- "date_period": "All Results",
- "value": "3.21572821183787",
- "national_value": "1.3573104344260978",
- "region_value": "1.4712787882302443",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-01",
- "date_period": "6 Months",
- "value": "5.754681425104474",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-01",
- "date_period": "1 Year",
- "value": "5.754681425104474",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-01",
- "date_period": "All Results",
- "value": "5.754681425104474",
- "national_value": "1.3021818099276308",
- "region_value": "1.5084118418353345",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "3",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-08",
- "date_period": "All Results",
- "value": "3.7405997031061173",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-08",
- "date_period": "1 Year",
- "value": "3.7405997031061173",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-08",
- "date_period": "6 Months",
- "value": "3.7405997031061173",
- "national_value": "1.3619947652407012",
- "region_value": "1.4964151664140728",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-15",
- "date_period": "All Results",
- "value": "2.4168349087203462",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-15",
- "date_period": "6 Months",
- "value": "2.4168349087203462",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-15",
- "date_period": "1 Year",
- "value": "2.4168349087203462",
- "national_value": "1.2628061463721076",
- "region_value": "1.3561340909210886",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-22",
- "date_period": "All Results",
- "value": "2.304222326266839",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-22",
- "date_period": "1 Year",
- "value": "2.304222326266839",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-22",
- "date_period": "6 Months",
- "value": "2.304222326266839",
- "national_value": "1.2052199837702806",
- "region_value": "1.2952821613825765",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-29",
- "date_period": "All Results",
- "value": "6.019482049446724",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-29",
- "date_period": "1 Year",
- "value": "6.019482049446724",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-06-29",
- "date_period": "6 Months",
- "value": "6.019482049446724",
- "national_value": "1.273869640381855",
- "region_value": "1.522076958067224",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "4",
- "activity_level_label": "Low"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-06",
- "date_period": "All Results",
- "value": "3.7547339017098507",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-06",
- "date_period": "6 Months",
- "value": "3.7547339017098507",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-06",
- "date_period": "1 Year",
- "value": "3.7547339017098507",
- "national_value": "1.2102044623079546",
- "region_value": "1.3329446792935293",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-13",
- "date_period": "1 Year",
- "value": "3.5069883915928264",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-13",
- "date_period": "All Results",
- "value": "3.5069883915928264",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-13",
- "date_period": "6 Months",
- "value": "3.5069883915928264",
- "national_value": "1.2500921185356304",
- "region_value": "1.4591266780515428",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-20",
- "date_period": "1 Year",
- "value": "3.587669863033576",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-20",
- "date_period": "All Results",
- "value": "3.587669863033576",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-20",
- "date_period": "45 Days",
- "value": "3.587669863033576",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-20",
- "date_period": "6 Months",
- "value": "3.587669863033576",
- "national_value": "1.294713364957226",
- "region_value": "1.8002892826092527",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-27",
- "date_period": "1 Year",
- "value": "2.194760917298193",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-27",
- "date_period": "6 Months",
- "value": "2.194760917298193",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-27",
- "date_period": "All Results",
- "value": "2.194760917298193",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-07-27",
- "date_period": "45 Days",
- "value": "2.194760917298193",
- "national_value": "1.2282017836939318",
- "region_value": "1.4205159389046391",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-03",
- "date_period": "45 Days",
- "value": "2.243456594384754",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-03",
- "date_period": "6 Months",
- "value": "2.243456594384754",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-03",
- "date_period": "All Results",
- "value": "2.243456594384754",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-03",
- "date_period": "1 Year",
- "value": "2.243456594384754",
- "national_value": "1.1982482228558",
- "region_value": "1.3723835914073788",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-10",
- "date_period": "6 Months",
- "value": "2.662302849333398",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-10",
- "date_period": "1 Year",
- "value": "2.662302849333398",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-10",
- "date_period": "All Results",
- "value": "2.662302849333398",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-10",
- "date_period": "45 Days",
- "value": "2.662302849333398",
- "national_value": "1.2170584609220954",
- "region_value": "1.292527655268397",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "2",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-17",
- "date_period": "1 Year",
- "value": "1.9599393855971148",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-17",
- "date_period": "All Results",
- "value": "1.9599393855971148",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-17",
- "date_period": "6 Months",
- "value": "1.9599393855971148",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-17",
- "date_period": "45 Days",
- "value": "1.9599393855971148",
- "national_value": "1.1593559015340453",
- "region_value": "1.2156582644621499",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-24",
- "date_period": "45 Days",
- "value": "1.9788938451398015",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-24",
- "date_period": "6 Months",
- "value": "1.9788938451398015",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-24",
- "date_period": "1 Year",
- "value": "1.9788938451398015",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-24",
- "date_period": "All Results",
- "value": "1.9788938451398015",
- "national_value": "1.2027558129111546",
- "region_value": "1.2312054090232434",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-31",
- "date_period": "6 Months",
- "value": "1.942966829810211",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-31",
- "date_period": "45 Days",
- "value": "1.942966829810211",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-31",
- "date_period": "All Results",
- "value": "1.942966829810211",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wisconsin",
- "date": "2024-08-31",
- "date_period": "1 Year",
- "value": "1.942966829810211",
- "national_value": "1.2069717610701027",
- "region_value": "1.279991790371343",
- "site_details_text": "Wisconsin has 17 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wyoming",
- "date": "2023-11-18",
- "date_period": "All Results",
- "value": "2.4802730474406784",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Wyoming has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wyoming",
- "date": "2023-11-18",
- "date_period": "1 Year",
- "value": "2.4802730474406784",
- "national_value": "7.246468237437615",
- "region_value": "5.755740554836573",
- "site_details_text": "Wyoming has 2 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
- "activity_level": "1",
- "activity_level_label": "Minimal"
- },
- {
- "State": "Wyoming",
- "date": "2023-11-25",
- "date_period": "1 Year",
- "value": null,
- "national_value": "8.20534192133349",
- "reg